-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "actionware",
"version": "8.2.3",
"description": "Use Redux with much less boilerplate and get busy and error states for every action with no extra code.",
"main": "./lib/index.js",
"scripts": {
"test": "cross-env NODE_PATH=./src mocha ./src/**/**/*.test.js --require before-tests.js --require babel-polyfill --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"build": "babel src -d lib",
"prepublish": "npm run test&&npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellguimaraes/actionware.git"
},
"keywords": [
"redux",
"actions",
"boilerplate",
"busy",
"state",
"error",
"react"
],
"author": "Wellington Guimaraes",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellguimaraes/actionware/issues"
},
"homepage": "https://github.com/wellguimaraes/actionware#readme",
"peerDependencies": {
"react": "^16.2.0",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"cross-env": "^5.0.1",
"enzyme": "^2.8.2",
"flow-bin": "^0.48.0",
"jsdom": "^9.0.0",
"mocha": "^3.4.2",
"mocha-jsdom": "^1.1.0",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-redux": "^5.0.5",
"react-test-renderer": "^15.5.4",
"sinon": "^2.3.4",
"redux": "^3.7.1"
}
}