This repository has been archived by the owner on May 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": "0.1.1",
"name": "redux-extensible-store",
"description": "Provides a redux store with additional methods for dynamic reducer and saga injections. The library is suitable for CMS or Portal solutions.",
"license": "MIT",
"main": "/dist/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"repository": "https://github.com/lundegaard/redux-extensible-store",
"contributors": [
"Tomas Konrady <[email protected]>",
"Jakub Kohout <[email protected]>"
],
"engines": {
"node": ">=8"
},
"files": [
"src",
"es",
"dist"
],
"keywords": [
"redux",
"saga",
"ramda"
],
"dependencies": {
"invariant": "^2.2.2",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.16.0",
"eslint-config-react-union": "^0.1.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "^7.6.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"redux": "3.7.2",
"redux-saga": "^0.16.0",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.8"
},
"peerDependencies": {
"redux": "3.7.2"
},
"scripts": {
"build:es": "babel src --out-dir es",
"build:umd": "rollup -c",
"build": "yarn && yarn build:es && yarn build:umd",
"test": "jest ./test",
"test:watch": "yarn test --watchAll",
"test:coverage": "yarn test --coverage",
"lint": "eslint .js --cache",
"lint:fix": "yarn lint --fix",
"lint:staged": "yarn lint:fix --max-warnings=0",
"precommit": "lint-staged",
"prepush": "yarn lint:staged && yarn test:coverage"
},
"lint-staged": {
"src/*.{js,jsx}": [
"lint:staged",
"git add"
]
},
"jest": {
"verbose": true
}
}