forked from omnidan/redux-undo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.87 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
70
71
72
73
74
75
{
"name": "redux-undo",
"version": "1.0.0-beta9-8",
"description": "simple undo/redo functionality for redux state containers",
"main": "lib/index.js",
"typings": "typings.d.ts",
"jspm": {
"main": "src/index.js",
"format": "esm"
},
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all --parallel build:*",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"clean": "./node_modules/.bin/rimraf lib dist es",
"lint": "./node_modules/.bin/eslint webpack.config.babel.js src test",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register",
"test:bail": "npm run test:watch -- --bail",
"test:cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover --root src/ ./node_modules/.bin/_mocha",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "npm run test -- --watch",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g omnidan/redux-undo",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run 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 [email protected]:omnidan/redux-undo gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/omnidan/redux-undo.git"
},
"keywords": [
"redux",
"undo",
"redo",
"flux",
"time travel"
],
"author": "Daniel Bugl <[email protected]> (https://github.com/omnidan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/omnidan/redux-undo/issues"
},
"homepage": "https://github.com/omnidan/redux-undo",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"expect": "^1.20.2",
"gitbook-cli": "^2.3.0",
"isparta": "^4.0.0",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"npm-run-all": "^3.1.1",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
},
"dependencies": {
"redux": "^3.5.2"
}
}