-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 962 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
{
"name": "redux-progress",
"version": "0.0.29",
"description": "Redux model to capture states of asynchronous operations (i.e. promises)",
"main": "lib/index.js",
"repository": "https://github.com/hendryluk/redux-progress",
"author": "hluk <[email protected]>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.74.0",
"flow-copy-source": "^2.0.0",
"jest": "^23.1.0"
},
"scripts": {
"build": "jest --env=node && babel --ignore *.test.js src/ -d lib/ && flow-copy-source --ignore *.test.js src lib",
"prepublish": "yarn run build",
"test": "jest --env=node src"
},
"files": [
"lib"
]
}