forked from omnidan/redux-undo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "redux-undo",
"version": "1.0.0-beta4",
"description": "simple undo/redo functionality for redux state containers",
"main": "lib/index.js",
"scripts": {
"clean": "./node_modules/.bin/rimraf lib",
"compile": "./node_modules/.bin/babel src --out-dir lib",
"lint": "./node_modules/.bin/eslint src test",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register",
"test:watch": "npm run test -- --watch",
"test:bail": "npm run test:watch -- --bail",
"test:cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"prepublish": "npm run lint && npm run test && npm run clean && npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/omnidan/redux-undo.git"
},
"keywords": [
"redux",
"undo",
"redo",
"flux",
"time travel"
],
"author": "Daniel Bugl <me@omnidan.net> (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.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"eslint": "2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"expect": "^1.14.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
},
"dependencies": {
"redux": "^3.3.1"
}
}