This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "redux-superapi",
"version": "1.0.9",
"description": "Create redux actions and reducers for REST endpoints",
"main": "./lib/SuperApi.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel ./src -d ./lib",
"test": "mocha --compilers js:babel-register ./test/*.js",
"coverage": "istanbul cover _mocha -- -R spec --compilers js:babel-register ./test/*.js",
"coveralls": "npm run coverage && ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kayak/redux-superapi.git"
},
"keywords": [
"redux",
"ajax",
"async",
"rest",
"api"
],
"author": "Remi Koenig",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kayak/redux-superapi/issues"
},
"homepage": "https://github.com/kayak/redux-superapi#readme",
"dependencies": {
"axios": "^0.15.2"
},
"devDependencies": {
"axios-mock-adapter": "^1.7.1",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"chai-subset": "^1.3.0",
"coveralls": "2.11.14",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-mocha": "^4.3.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "1.2.0",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.0",
"redux-thunk": "^2.1.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}