-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.4 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
57
58
59
60
{
"name": "redux-crud-async",
"version": "0.8.1",
"description": "crud async actions for redux",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "babel -d lib/ src/",
"pub" : "npm run compile && npm publish",
"test" : "npm run compile && mocha",
"w" : "npm run compile && mocha --watch",
"123" : "npm run compile && mocha --watch -g 123"
},
"repository": {
"type": "git",
"url": "https://github.com/l1br3/redux-crud-async.git"
},
"keywords": [
"react",
"redux",
"crud",
"async",
"xhr",
"socket",
"auth",
"async actions"
],
"author": "l1br3",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/l1br3/redux-crud-async/issues"
},
"homepage": "https://github.com/l1br3/redux-crud-async#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"redux": "^3.4.0",
"redux-mock-store": "^1.0.2",
"redux-thunk": "^2.0.1",
"require-self": "^0.1.0",
"rewire": "^2.5.1",
"sinon": "^1.17.3"
},
"dependencies": {
"axios": "^0.9.1",
"babel-loader": "^6.3.2",
"chalk": "^1.1.3",
"object-path": "^0.9.2",
"pluralize": "^1.2.1",
"uuid": "^2.0.2"
}
}