-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.75 KB
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
{
"name": "react-ctx-connect",
"version": "1.0.2",
"private": false,
"homepage": "https://github.com/hadrienl/react-ctx-connect",
"repository": "github:hadrienl/react-ctx-connect.git",
"author": {
"name": "Hadrien Lanneau",
"email": "hadrien@lanneau.me",
"url": "https://hadrien.eu"
},
"main": "dist/connect.js",
"scripts": {
"build": "./scripts/build.sh",
"test": "react-scripts test",
"watch-coverage": "npm test -- --coverage --watch",
"eject": "react-scripts eject",
"lint": "eslint src",
"coverage": "npm test -- --coverage",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.5.0",
"concurrently": "^4.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-makina": "~0.8.2",
"eslint-watch": "^4.0.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-scripts": "^2.1.3"
},
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}