-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "redux-async-await",
"version": "1.0.1",
"description": "redux middleware to es7 async/await syntax action and promise action",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"test": "mocha --compilers js:babel-register --require babel-polyfill --recursive src/**/__test__/*.js",
"test:watch": "mocha --compilers js:babel-register --recursive --watch src/**/__test__/*.js",
"build:lib": "babel src --ignore src/__test__ --out-dir lib "
},
"repository": {
"type": "git",
"url": "git+https://github.com/eyasliu/redux-async-await.git"
},
"keywords": [
"redux",
"async",
"await",
"async/await",
"async-await",
"promise",
"middleware"
],
"author": "Eyas",
"license": "ISC",
"bugs": {
"url": "https://github.com/eyasliu/redux-async-await/issues"
},
"homepage": "https://github.com/eyasliu/redux-async-await#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"expect": "^1.20.1",
"mocha": "^2.4.5",
"redux": "^3.5.2"
}
}