forked from hupe1980/wapps-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.38 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
{
"private": true,
"name": "wapps-components",
"license": "MIT",
"scripts": {
"prebuild": "lerna exec --parallel -- rimraf lib",
"build": "lerna exec --parallel -- babel src -d lib --ignore __tests__,__stories__",
"build:watch": "lerna exec --parallel -- babel src -d lib --ignore __tests__,__stories__ --watch",
"clean": "lerna clean",
"format": "prettier-eslint --write \"packages/*/src/**/*.js\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"deploy-storybook": "storybook-to-ghpages",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"prepublish": "yarn build",
"publish": "lerna publish",
"coverage": "jest --coverage && codecov"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.6",
"@storybook/addon-options": "^3.4.6",
"@storybook/addon-storyshots": "^3.4.6",
"@storybook/addon-storysource": "^3.4.6",
"@storybook/react": "^3.4.6",
"@storybook/storybook-deployer": "^2.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"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-react": "^6.24.1",
"codecov": "^3.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-context-patch": "^0.0.8",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^3.0.0-next.66cc7a90",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.1",
"jest": "^23.1.0",
"lerna": "^2.8.0",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.3.2",
"rimraf": "^2.6.2"
},
"workspaces": [
"packages/*"
],
"jest": {
"setupFiles": [
"./scripts/setupTests.js"
],
"testMatch": [
"**/?(*.)+(spec|test).js?(x)"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"collectCoverageFrom": [
"packages/*/src/**/*.js",
"!**/__tests__/**",
"!**/__stories__/**"
]
}
}