forked from valerybugakov/redux-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@nova-web/redux-boost",
"version": "0.2.1",
"license": "MIT",
"description": "Redux-Boost",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"scripts": {
"huskyprecommit": "lint-staged",
"format": "prettier --write \"**/*.{js,md}\"",
"format:check": "prettier --list-different \"**/*.{js,md}\"",
"lint": "eslint src test",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack && es-check es5 dist/redux-boost.min.js",
"build": "run-s clean && run-p build:**",
"test": "jest",
"check": "npm-check -u",
"clean": "rimraf coverage dist es lib",
"prepublishOnly": "run-s build",
"pub": "npx np --yolo || true"
},
"files": [
"es",
"lib",
"dist"
],
"keywords": [
"redux"
],
"author": "Valery Bugakov",
"homepage": "https://github.com/valerybugakov/redux-boost#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/valerybugakov/redux-boost.git"
},
"bugs": {
"url": "https://github.com/valerybugakov/redux-boost/issues"
},
"contributors": [
{
"name": "Valery Bugakov",
"email": "[email protected]"
}
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "9.0.0",
"babel-jest": "21.2.0",
"babel-loader": "7.1.5",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"cross-env": "5.2.0",
"es-check": "2.1.0",
"eslint": "4.10.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"husky": "0.14.3",
"jest": "^21.2.1",
"lint-staged": "7.2.0",
"np": "2.16.1",
"npm-check": "5.4.5",
"npm-run-all": "4.1.3",
"prettier": "1.14.2",
"react-dom": "~16.13",
"react-redux": "7.2.2",
"rimraf": "2.6.2",
"run-sequence": "2.2.0",
"webpack": "4.16.5",
"webpack-cli": "3.1.0"
},
"dependencies": {
"immutability-helper": ">=2.0.0",
"lodash.get": ">=4.0.0",
"redux-yo": ">=0.0.27",
"reselect": ">=3.0.0"
},
"peerDependencies": {
"react": "~16.13",
"react-dom": "~16.13",
"react-redux": "7.2.2",
"redux": "^4.0.5",
"reselect": ">=0.0.1"
},
"optionalDependencies": {
"redux-logger": ">=0.0.1",
"redux-persist": ">=0.0.1",
"redux-saga": ">=0.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "es5"
},
"jest": {
"collectCoverage": true
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}