-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
50
{
"name": "redux-sessions",
"version": "2.0.4",
"description": "Redux action creators for storing session state",
"main": "lib/index.js",
"scripts": {
"start": "yarn build:development",
"build": "mkdir -p lib && babel src --out-dir lib --no-comments --minified",
"build:development": "mkdir -p lib && babel src --watch --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint src",
"prepublish": "yarn lint && yarn clean && yarn build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": "launchpadlab/redux-sessions",
"keywords": [
"redux",
"sessions",
"jwt",
"tokens"
],
"author": "dpikt",
"license": "MIT",
"files": [
"README.md",
"LICENSE.md",
"lib/"
],
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@launchpadlab/babel-preset": "^2.1.0",
"babel-eslint": "^10.0.2",
"dom-storage": "^2.1.0",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^24.8.0",
"redux": "^4.0.4",
"redux-mock-store": "^1.3.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"lodash": "^4.17.10",
"redux-actions": "^2.0.3"
},
"peerDependencies": {
"redux": "^4.0.0 || ^3.0.0"
}
}