-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.56 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "hoc-little-router",
"version": "1.2.1",
"description": "HOC to hide a component when the route didn't match. Edit",
"license": "MIT",
"main": "dist/index.js",
"contributors": [
"Fabien JUIF <[email protected]>",
"Guillaume CRESPEL <[email protected]>"
],
"scripts": {
"build:core": "cross-env NODE_ENV=build rollup -c ./misc/rollup.config.js",
"build": "npm-run-all --parallel build:*",
"test": "jest",
"coveralls": "jest --coverage --collectCoverageFrom=src/**/*.js{x} && cat ./coverage/lcov.info | coveralls",
"lint:js": "eslint --ext js,jsx src",
"lint": "npm-run-all --parallel lint:*",
"ci": "npm-run-all --parallel lint coveralls"
},
"peerDependencies": {
"react": "^15.4.2 || ^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"npm-run-all": "4.1.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-terser": "^3.0.0",
"sinon": "^6.3.5"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"plugins": [
"babel"
],
"globals": {
"fetch": false
},
"env": {
"browser": true
},
"rules": {
"semi": [
2,
"never"
],
"arrow-body-style": 0,
"import/prefer-default-export": 0,
"react/forbid-prop-types": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"func-names": 0,
"jsx-a11y/no-static-element-interactions": 0,
"function-paren-newline": 0
}
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/misc/",
"/build/"
],
"setupFiles": [
"./misc/testSetup.js"
],
"moduleDirectories": [
"node_modules",
"src"
]
}
}