-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 916 Bytes
/
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
{
"name": "@abradley2/redux-dev-state-persist",
"version": "1.0.1",
"description": "Simple state persistence for developing with redux",
"main": "dist.js",
"scripts": {
"test": "standard",
"lint": "standard --fix",
"build": "browserify ./redux-dev-state-persist -t bubleify -g uglifyify --standalone reduxDevStatePersist -o ./dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abradley2/redux-dev-state-persist.git"
},
"author": "Tony Bradley",
"license": "MIT",
"bugs": {
"url": "https://github.com/abradley2/redux-dev-state-persist/issues"
},
"homepage": "https://github.com/abradley2/redux-dev-state-persist#readme",
"devDependencies": {
"browserify": "^14.5.0",
"bubleify": "^0.7.0",
"standard": "^10.0.3",
"uglifyify": "^4.0.4"
},
"dependencies": {
"fast-deep-equal": "^1.0.0",
"localforage": "^1.5.3"
}
}