-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "redux-devtools-state-store",
"version": "1.0.0",
"description": "A persistent storage module for redux devtools state",
"main": "lib/persistState.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jxm262/redux-devtools-state-store.git"
},
"keywords": [
"redux-devtools",
"persistState"
],
"author": "Justin Maat <[email protected]> (http://jmaat.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jxm262/redux-devtools-state-store/issues"
},
"homepage": "https://github.com/jxm262/redux-devtools-state-store#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"lodash": "^4.6.1"
}
}