-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.59 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
67
68
69
{
"name": "iflow",
"version": "1.0.0-alpha.41",
"description": "Concise & powerful state management framework for Javascript.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"files": [
"dist",
"lib",
"utils"
],
"scripts": {
"test": "jest",
"test:cover": "jest --coverage",
"test:cover:travis": "npm run test:cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build:clean": "rimraf dist",
"build:cjs": "cross-env NODE_ENV=cjs rollup -c -o dist/cjs/index.js",
"build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o dist/es/index.js",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/umd/index.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/umd/index.min.js",
"build": "yarn build:clean && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd:min",
"release": "babel lib -d build",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:clean": "rimraf _book",
"docs:build": "yarn docs:prepare && gitbook build -g unadlib/iflow && cp assets/favicon.ico _book/gitbook/images",
"docs:publish": "yarn docs:clean && yarn docs:build && cp CNAME _book && 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:unadlib/iflow gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/iflow.git"
},
"author": {
"name": "unadlib",
"email": "unadlib@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/iflow/issues"
},
"jest": {
"testPathIgnorePatterns": [
"_book"
]
},
"homepage": "https://github.com/unadlib/iflow#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-anchors": "^0.7.1",
"gitbook-plugin-copy-code-button": "0.0.2",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-github-buttons": "^3.0.0",
"jest": "^22.0.4",
"rimraf": "^2.6.2",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.3.2"
}
}