-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1006 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
37
38
{
"name": "redux-call-api",
"version": "0.0.1",
"description": "Nice way to perform async api calls in Redux app",
"main": "lib/index.js",
"scripts": {
"test": "mocha src/test --compilers js:babel-core/register",
"compile": "babel src -d lib",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saintcrawler/redux-call-api.git"
},
"keywords": [
"redux",
"async",
"api",
"calls"
],
"author": "saintcrawler",
"license": "ISC",
"bugs": {
"url": "https://github.com/saintcrawler/redux-call-api/issues"
},
"homepage": "https://github.com/saintcrawler/redux-call-api#readme",
"devDependencies": {
"redux-trigger-middleware": "^0.0.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"es6-promise": "^3.2.1",
"mocha": "^2.5.3",
"redux": "^3.5.2"
}
}