-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "redux-undo-redo",
"version": "2.1.1",
"description": "enables undo-redo by defining opposite actions",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"build:watch": "npm run build -- --watch",
"test": "mocha --require babel-core/register --require ./testSetup.js",
"test:watch": "npm run test -- --watch",
"publish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/powtoon/redux-undo-redo.git"
},
"keywords": [
"redux"
],
"author": "Arik Maor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/powtoon/redux-undo-redo/issues"
},
"homepage": "https://github.com/powtoon/redux-undo-redo#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-lodash": "^3.2.9",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"mocha": "^6.2.2",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.5.4"
},
"dependencies": {
"lodash": "^4.16.3"
}
}