forked from redux-offline/redux-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@redux-offline/redux-offline",
"version": "2.5.1",
"description": "Redux Offline-First Architecture",
"main": "lib/index.js",
"types": "./typings.d.ts",
"scripts": {
"build": "babel src --out-dir lib --ignore '**/__tests__/**'",
"flow:start": "flow server",
"flow:stop": "flow stop",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "eslint src/",
"prepublishOnly": "npm run lint && npm run flow && npm run test && npm run build",
"prettier": "eslint src --fix",
"test": "jest",
"test:watch": "jest --watch",
"watch": "npm run build -- --watch"
},
"jest": {
"rootDir": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redux-offline/redux-offline"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-offline/redux-offline/issues"
},
"homepage": "https://github.com/redux-offline/redux-offline#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-flowtype": "^3.1.1",
"flow-bin": "^0.84.0",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"redux": "^4.0.1",
"redux-devtools-instrument": "^1.9.0",
"redux-logger": "^3.0.6",
"redux-persist-node-storage": "^1.0.2",
"release": "^4.0.2"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"redux-persist": "^4.6.0"
},
"peerDependencies": {
"redux": ">=3"
}
}