-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "redux-ecommerce",
"version": "0.0.1",
"description": "redux ecommerce components",
"main": "dist/index.js",
"options": {
"mocha": "--require scripts/mocha-bootload lib/**/__tests__/**/*.js"
},
"scripts": {
"lint": "eslint lib",
"test": "mocha $npm_package_options_mocha",
"coverage": "istanbul cover _mocha -- $npm_package_options_mocha --reporter dot",
"compile": "webpack --progress --colors",
"build": "babel lib --ignore __tests__ --out-file dist/index.js --optional es7.decorators,es7.objectRestSpread",
"watch": "webpack --progress --colors --watch"
},
"author": "Tom Alexander <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "5.5.5",
"babel-core": "5.5.5",
"babel-eslint": "3.1.15",
"babel-loader": "^5.0.0",
"chai": "3.0.0",
"eslint": "0.22.1",
"mocha": "2.2.5",
"react": "^0.13.3",
"redux": "^1.0.1",
"redux-actions": "^0.7.0",
"redux-promise": "^0.5.0",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"uglify-loader": "^1.2.0",
"webpack": "^1.8.9"
},
"peerDependencies": {
"react": "*",
"redux": "*",
"redux-actions": "*",
"redux-promise": "*"
}
}