-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.78 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
59
60
61
62
63
64
65
66
{
"name": "redux-rest-tools",
"version": "0.7.4",
"description": "Redux tools to handle REST requests",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "yarn run clean && yarn run build",
"test": "NODE_ENV=test mocha --compilers js:babel-register --require babel-polyfill --recursive --check-leaks --growl",
"test:watch": "yarn test -- --watch",
"jsdoc:actions": "cd docs/api/actions && documentation readme ../../../src/actions.js --section=API",
"jsdoc:helpers": "cd docs/api/helpers && documentation readme ../../../src/helpers.js --section=API",
"jsdoc:middleware": "cd docs/api/middleware && documentation readme ../../../src/middleware.js --section=API",
"jsdoc:normalize": "cd docs/api/normalizer && documentation readme ../../../src/normalize.js --section=API",
"jsdoc:reducers": "cd docs/api/reducers && documentation readme ../../../src/reducers.js --section=API",
"jsdoc:all": "yarn run jsdoc:actions && yarn run jsdoc:helpers && yarn run jsdoc:middleware && yarn run jsdoc:normalize && yarn run jsdoc:reducers",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "yarn run jsdoc:all && yarn run docs:prepare && gitbook build -g ocolot/redux-rest-tools",
"docs:serve": "yarn run jsdoc:all && yarn run docs:prepare && gitbook serve",
"docs:publish": "yarn run docs:clean && yarn run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:ocolot/redux-rest-tools gh-pages --force"
},
"repository": {
"url": "git+https://github.com/ocolot/redux-rest-tools.git",
"type": "git"
},
"keywords": [
"redux",
"api",
"REST",
"reducers",
"actions",
"immutable",
"flux"
],
"author": "Olivier Colot (http://cocreation.studio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ocolot/redux-rest-tools/issues"
},
"homepage": "https://github.com/ocolot/redux-rest-tools#readme",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"documentation": "^4.0.0-beta.17",
"eslint-plugin-flowtype": "^2.29.1",
"expect": "^1.20.2",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.0.1",
"mocha": "^3.1.2",
"rimraf": "2.5.4"
},
"dependencies": {
"axios": "^0.15.2",
"immutable": "^3.8.1",
"redux-actions": "^0.12.0"
}
}