-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 2.1 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
{
"name": "redux-state-history",
"version": "0.1.5",
"description": "Redux store enhancers for tracking and visualizing state changes",
"main": "lib/index.js",
"author": "Inaki Anduaga",
"private": false,
"dependencies": {
"jsondiffpatch": "^0.1.37",
"extend": "^3.0.0",
"react-dropzone": "^3.2.2"
},
"devDependencies": {
"typescript": "^1.7.3",
"ts-loader": "^0.7.2",
"tslint-loader": "^2.1.0",
"tsd": "^0.6.5",
"tslint": "^3.2.0",
"babel-core": "^5.8.34",
"babel-loader": "^5.4.0",
"babel": "^5.8.24",
"rimraf": "^2.4.4",
"webpack": "^1.12.9"
},
"peerDependencies": {
"redux": "^3.0.5",
"react": "^0.14.3",
"react-redux": "^4.0.1"
},
"scripts": {
"build": "npm run clean && npm run build:lib && npm run build:umd",
"build:umd": "NODE_ENV=production node ./node_modules/webpack/bin/webpack.js --config webpack.js --progress --colors",
"build:lib": "npm run build:typescript-compile && npm run build:babel-compile",
"build:typescript-compile": "npm run clean:tmp && ./node_modules/typescript/bin/tsc --outDir tmp -p ./",
"build:babel-compile": "node ./node_modules/babel/bin/babel.js tmp --out-dir lib && npm run clean:tmp",
"clean": "rimraf lib tmp dist",
"clean:tmp": "rimraf tmp",
"typings-install": "node ./node_modules/tsd/build/cli.js install",
"typings-update": "node ./node_modules/tsd/build/cli.js update --overwrite --save",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"preversion": "",
"version": "npm run build",
"postversion": "git push && git push --tags && rm -rf lib"
},
"repository": {
"type": "git",
"url": "https://github.com/inakianduaga/redux-state-history.git",
"path": "inakianduaga/redux-state-history"
},
"bugs": {
"url": "https://github.com/inakianduaga/redux-state-history/issues"
},
"license": "MIT",
"keywords": [
"react",
"redux",
"flux",
"time travel",
"devtools"
],
"homepage": "https://github.com/inakianduaga/redux-state-history",
"engines": {
"node": "4.x"
}
}