-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 KB
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
{
"name": "redux-session",
"version": "1.0.5",
"description": "Automatically cache parts (or all) of your state in localStorage, sessionStorage or cookies.",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push origin master && git push origin master --tags",
"clean": "rm -rf dist/",
"build": "rollup -c",
"watch": "npm run build -- --watch",
"test": "mocha",
"tdd": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelsantia/redux-session.git"
},
"keywords": [
"redux",
"session",
"localStorage",
"sessionStorage",
"cookies",
"es6",
"es2015"
],
"author": "Helpful Human <hello@helpfulhuman.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/helpfulhuman/redux-session/issues"
},
"homepage": "https://github.com/helpfulhuman/redux-session#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^5.2.0",
"mock-local-storage": "^1.0.2",
"rollup": "^0.50.1",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-watch": "^4.3.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {}
}