-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 870 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
{
"name": "react-state-reducer",
"version": "1.4.0",
"description": "",
"keywords": [
"react",
"state-reducer",
"redux"
],
"homepage": "https://github.com/hamlim/react-state-reducer",
"main": "pkg/index.js",
"peerDependencies": {
"react": "^16.7.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"jest": "^22.4.3",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-testing-library": "^1.9.2"
},
"scripts": {
"dev": "npx parcel-bundler ./public/index.html",
"build": "babel ./src --out-dir ./pkg --ignore spec.js,test.js",
"test": "jest --watchAll"
}
}