-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "redux-undoable",
"version": "1.0.2",
"description": "A reducer enhancer (or higher order reducer) that provides undo/redo functionality for Redux by replaying actions (rather than storing previous state)",
"main": "lib/undoable.js",
"scripts": {
"build": "babel -d lib/ src/ --source-maps both",
"prepublish": "npm run build",
"lint": "eslint src test",
"test": "mocha",
"coverage": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linn/redux-undoable.git"
},
"keywords": [
"redux",
"undo",
"redo",
"actions",
"undoable"
],
"author": {
"name": "Jim Liddell",
"url": "http://liddellj.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/linn/redux-undoable/issues"
},
"homepage": "https://github.com/linn/redux-undoable#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.11.3",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.3.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.2"
}
}