-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "hard-reducer",
"version": "2.4.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"prepare": "run-s test build",
"test": "yarn build && run-p test:*",
"test:flow": "flow",
"test:ts": "tsc --noEmit --lib ES2015 test/typescript.ts && ts-node --lib ES2015 test/typescript.ts",
"test:all": "nyc babel-node test/index",
"build": "babel src -d lib"
},
"devDependencies": {
"@types/node": "^11.9.0",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.88.0",
"npm-run-all": "^4.1.2",
"nyc": "^13.2.0",
"prettier": "^1.13.7",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.2.0",
"ts-node": "^7.0.0",
"typescript": "^3.2.1"
},
"files": [
"lib",
"index.js",
"index.js.flow",
"index.d.ts"
],
"typings": "index.d.ts",
"repository": "[email protected]:mizchi/hard-reducer.git",
"author": "mizchi <[email protected]>",
"dependencies": {
"uuid": "^3.2.1"
}
}