-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 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
{
"name": "redux-promise-wait",
"version": "0.2.0",
"author": "Neal Granger",
"license": "CC0-1.0",
"repository": "nealgranger/redux-promise-wait",
"scripts": {
"build": "node_modules/.bin/babel -s inline -d . src/",
"lint": "node_modules/.bin/eslint .",
"prepublish": "npm run build",
"spec": "NODE_ENV=test node_modules/.bin/mocha --compilers js:babel-core/register -r adana-dump -R spec test/spec",
"test": "npm run lint && npm run spec"
},
"dependencies": {
"is-promise": "^2.1.0"
},
"peerDependencies": {
"redux": ">=2.0.0"
},
"devDependencies": {
"adana-cli": "^0.1.0",
"adana-dump": "^0.1.0",
"adana-format-lcov": "^0.1.1",
"babel-cli": "^6.4.0",
"babel-core": "^6.3.26",
"babel-preset-metalab": "^0.2.0",
"chai": "^3.4.0",
"eslint": "^1.10.3",
"eslint-config-metalab": "^1.0.0-rc.4",
"eslint-plugin-filenames": "^0.2.0",
"eslint-plugin-import": "^0.11.0",
"eslint-plugin-react": "^3.16.1",
"mocha": "^2.3.3",
"redux": "^3.0.6",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}