-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "memory",
"version": "0.1.0",
"private": true,
"homepage": "https://wgil.github.io/memory-game/",
"dependencies": {
"gh-pages": "^2.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-octicon": "^3.0.1",
"react-scripts": "1.1.5",
"styled-components": "^3.4.5",
"uuid": "^3.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coverage": "npm run test -- --coverage",
"eject": "react-scripts eject",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"prettier": "1.14.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!src/setupTests.js",
"!src/registerServiceWorker.js",
"!src/index.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}