-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "redux-object",
"version": "1.0.1",
"description": "Builds complex JS object from normalized redux store. Best works with json-api-normalizer",
"main": "dist/bundle.min.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --output-filename bundle.min.js",
"clean": "rimraf dist coverage lib",
"coverage": "nyc _mocha --require @babel/register",
"lint": "eslint src --ext .js",
"test": "mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yury-dymov/redux-object.git"
},
"keywords": [
"redux",
"normalizr",
"JSON",
"API"
],
"author": "Yury Dymov",
"license": "MIT",
"bugs": {
"url": "https://github.com/yury-dymov/redux-object/issues"
},
"dependencies": {
"core-js": "3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.13",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-webpack-plugin": "^2.4.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.5",
"mocha": "^8.2.1",
"nyc": "^14.1.1",
"rimraf": "^2.6.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"browserslist": [
"edge 16",
"safari 9",
"firefox 57",
"ie 11",
"ios 9",
"chrome 49"
],
"homepage": "https://github.com/yury-dymov/redux-object#readme"
}