-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1002 Bytes
/
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
{
"name": "redux-restful-api",
"version": "0.0.2",
"description": "The simple RESTful API wrapper for redux async actions",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hezhenxing/redux-api.git"
},
"keywords": [
"redux",
"RESTful",
"actions",
"api"
],
"author": "He Zhenxing <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hezhenxing/redux-api/issues"
},
"homepage": "https://github.com/hezhenxing/redux-api",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"redux-act": "^1.1.0"
}
}