-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "redux-persist-node-storage",
"version": "2.0.0",
"description": "Redux persist adaptor for Node local storage",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint src/**/*.ts",
"test": "npm run build && node dist/index.spec.js && npm run lint",
"watch": "tsc --watch",
"prepublish": "typings install && npm run build"
},
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pellejacobs/redux-persist-node-storage.git"
},
"files": [
"dist",
"src",
"index.d.ts"
],
"keywords": [
"redux",
"redux-persist",
"localstorage"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pellejacobs/redux-persist-node-storage/issues"
},
"homepage": "https://github.com/pellejacobs/redux-persist-node-storage#readme",
"dependencies": {
"node-localstorage": "^1.3.0"
},
"devDependencies": {
"@types/es6-promise": "0.0.33",
"async": "^2.0.1",
"babel-preset-es2015": "^6.13.2",
"tape": "^4.8.0",
"tslint": "^3.14.0",
"tslint-config-typings": "^0.2.3",
"tslint-config-unional": "^0.4.4",
"typings": "^1.3.2"
}
}