-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 970 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
39
{
"name": "redux-requests",
"version": "1.0.2",
"description": "Manages in-flight requests with a Redux reducer - avoid issuing duplicate requests without any special logic!",
"main": "lib/index.js",
"jsnext:main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/idolize/redux-requests.git"
},
"keywords": [
"redux",
"react",
"flux",
"http",
"request",
"requests",
"pending",
"flight"
],
"author": "David Idol",
"license": "MIT",
"bugs": {
"url": "https://github.com/idolize/redux-requests/issues"
},
"homepage": "https://github.com/idolize/redux-requests#readme",
"scripts": {
"prepublish": "babel index.js --out-dir lib",
"test": "mocha --compilers js:babel/register test"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.21",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"es6-promise": "^3.0.2",
"mocha": "^2.2.5"
}
}