-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "redux-rest-api",
"version": "1.0.1",
"main": "dist/index.js",
"description": "Middleware that gives you a uniform way to define API actions in Redux applications.",
"author": "Mario Pabon <me@mariopabon.com> (https://mariopabon.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/restlessbit/redux-rest-api.git"
},
"bugs": {
"url": "https://github.com/restlessbit/redux-rest-api/issues"
},
"homepage": "https://github.com/restlessbit/redux-rest-api#readme",
"keywords": [
"redux",
"redux-middleware",
"middleware",
"promise",
"promises",
"api"
],
"files": [
"dist/"
],
"scripts": {
"clean": "rm -rf dist",
"build/watch": "npm run build -- --watch",
"build": "npm run clean && babel src --out-dir dist --source-maps",
"lint": "eslint .",
"mocha": "mocha --recursive --reporter dot test --require babel-register",
"test": "npm run lint && npm run mocha",
"test/watch": "npm run mocha -- --watch",
"prepublish": "npm run build"
},
"dependencies": {
"object-assign": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-standard": "^7.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"expect": "^1.20.2",
"isomorphic-fetch": "^2.2.1",
"mocha": "^3.2.0",
"nock": "^9.0.9",
"redux": "^3.6.0",
"sinon": "^1.17.7"
}
}