forked from dairyisscary/redux-undo-immutable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
{
"name": "redux-undo-immutable",
"productName": "Redux Undo Immutable",
"version": "0.2.0",
"description": "Redux Undo with ImmutableJS",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"typecheck": "flow check",
"clean": "rimraf lib",
"build": "webpack src/index.js lib/index.js",
"build:min": "cross-env NODE_ENV=production webpack src/index.js lib/index.js",
"test": "nyc --all --reporter=lcov --require babel-core/register mocha --recursive src/**/*.spec.js",
"test-watch": "npm test -- --watch",
"prepublish": "npm run lint && npm run typecheck && npm run test && npm run clean && npm run build:min"
},
"nyc": {
"include": [
"**/src/**/*.js"
],
"exclude": [
"**/*.spec.js",
"lib/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/idealeric/redux-undo-immutable.git"
},
"keywords": [
"redux",
"undo",
"redo",
"flux",
"time travel"
],
"bugs": {
"url": "https://github.com/idealeric/redux-undo-immutable/issues"
},
"homepage": "https://github.com/idealeric/redux-undo-immutable",
"author": {
"name": "Eric Butler",
"email": "idealeric@gmail.com"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^1.0.7",
"eslint": "^2.9.0",
"eslint-plugin-flow-vars": "^0.3.0",
"flow-bin": "^0.22.1",
"mocha": "^2.4.5",
"nyc": "^6.2.1",
"rimraf": "^2.5.2",
"unexpected": "^10.13.0",
"webpack": "^1.13.0"
},
"dependencies": {
"immutable": "^3.8.1",
"redux": "^3.5.2"
}
}