This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@urbica/ui-kit",
"version": "0.6.0",
"description": "Urbica UI Kit",
"author": "Stepan Kuzmin <[email protected]>",
"contributors": [
"Andrey Bakhvalov <[email protected]>",
"Artem Boyur <[email protected]>",
"Stepan Kuzmin <[email protected]>"
],
"repository": "[email protected]:urbica/ui-kit.git",
"license": "MIT",
"main": "dist/ui-kit.js",
"scripts": {
"start": "npm run styleguide",
"lint": "eslint src test",
"typecheck": "flow check src",
"typecheck:coverage": "flow-coverage-report -i 'src/**/*.js' -t html",
"test": "jest",
"test:coverage": "jest --coverage && codecov",
"build": "webpack-cli -p --config webpack.config.js",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"styleguide:deploy": "gh-pages -m 'auto commit [ci skip]' -d styleguide",
"cz": "git-cz",
"release": "npm run build && standard-version",
"prepublish": "npm run build",
"postpublish": "npm run styleguide:build && npm run styleguide:deploy"
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"moduleNameMapper": {
"\\.(svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"recompose": "^0.27.0",
"styled-components": "^3.2.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.43.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.68.0",
"flow-coverage-report": "^0.5.0",
"gh-pages": "^1.1.0",
"jest": "^22.4.4",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-docgen": "^2.20.1",
"react-dom": "^16.3.2",
"react-styleguidist": "^7.0.14",
"recompose": "^0.27.1",
"simulant": "^0.2.2",
"standard-version": "^4.4.0",
"styled-components": "^3.2.6",
"svg-url-loader": "^2.3.2",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
}
}