-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.73 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
{
"name": "redux-ship",
"version": "1.0.0",
"description": "Composable, testable and typable side effects for Redux",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"docs:build": "npm run docs:prepare && gitbook build -g clarus/redux-ship",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:publish": "npm run docs:clean && npm 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:clarus/redux-ship gh-pages --force",
"docs:watch": "npm run docs:prepare && gitbook serve",
"eslint": "eslint src",
"flow": "flow",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clarus/redux-ship.git"
},
"author": "Guillaume Claret",
"license": "MIT",
"bugs": {
"url": "https://github.com/clarus/redux-ship/issues"
},
"homepage": "https://github.com/clarus/redux-ship#readme",
"files": [
"dist",
"src/*.js"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babylon": "^6.15.0",
"eslint": "^3.15.0",
"eslint-plugin-babel": "^4.0.1",
"flow-bin": "^0.57.3",
"gitbook-cli": "^2.3.0",
"jest": "^18.1.0",
"rimraf": "^2.5.4"
},
"jest": {
"rootDir": "src"
}
}