-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "redux-module-local-storage",
"version": "1.1.0",
"description": "Redux module interfacing with Window.localStorage",
"main": "build/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d build",
"lint": "eslint 'src/**/*.js'",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"release": "np"
},
"babel": {
"presets": [
"latest"
]
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fredrikolovsson/redux-module-local-storage.git"
},
"keywords": [
"redux",
"localStorage",
"module"
],
"author": "Fredrik Olovsson (http://fredrikolovsson.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fredrikolovsson/redux-module-local-storage/issues"
},
"homepage": "https://github.com/fredrikolovsson/redux-module-local-storage#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.4",
"np": "^2.16.0",
"watch": "^1.0.2"
}
}