-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "redux-flush",
"version": "0.0.6",
"description": "Redux middleware for flushing frequent actions. It optimizes the redux based application via reducing re-rendering caused of changed state.",
"keywords": [
"redux",
"flush",
"flushing",
"frequent actions",
"performance",
"redux-flush"
],
"jsnext:main": "es/index.js",
"main": "dist/redux-flush.js",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config webpack.config.js --hot --host 0.0.0.0",
"lint": "eslint src/**/*.js || true",
"format": "prettier-eslint --write \"./es/**/*.js\" \"./demo/**/*.js\" \"./__test__/**/*.js\"",
"build": "NODE_ENV=production webpack -p --config webpack.config.js",
"prepare": "npm run lint && npm t && npm run build",
"test": "jest"
},
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/wonism/redux-flush.git"
},
"bugs": {
"url": "https://github.com/wonism/redux-flush/issues"
},
"homepage": "https://github.com/wonism/redux-flush#readme",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"compression-webpack-plugin": "^2.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-mock-store": "^1.5.3",
"regenerator-runtime": "^0.12.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm t"
}
},
"jest": {
"verbose": true,
"bail": true,
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}