-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 921 Bytes
/
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
{
"name": "keycode",
"description": "Visualizer for JavaScript keycodes",
"homepage": "https://github.com/pankajladhar/keycode/",
"dependencies": {
"react": "16.1.1",
"react-dom": "16.1.1",
"react-scripts": "1.0.10"
},
"devDependencies": {
"react-test-renderer": "^16.4.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"react-scripts": "1.1.4",
"react-front-cli": "^1.1.3",
"run-git-command": "^1.2.0"
},
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "PUBLIC_URL=. react-scripts build",
"release": "npm run build && git checkout gh-pages && sh ./build.sh",
"test": "react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage",
"eject": "react-scripts eject"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js"
]
}
}