-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "turbo-combine-reducers",
"version": "1.0.2",
"description": "Speed-optimized drop-in replacement for Redux's combineReducers",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production rollup -c rollup.config.js",
"postbuild": "npm run minify",
"minify": "uglifyjs dist/turbo-combine-reducers.js -c -m > dist/turbo-combine-reducers.min.js",
"test:lint": "eslint .",
"test:unit": "jest",
"test": "npm run test:unit && npm run test:lint",
"benchmark": "node benchmark",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"redux",
"reducer",
"reducers"
],
"files": [
"dist",
"index.js"
],
"author": {
"name": "Andrew Duthie",
"email": "[email protected]",
"url": "https://andrewduthie.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aduth/turbo-combine-reducers.git"
},
"bugs": {
"url": "https://github.com/aduth/turbo-combine-reducers/issues"
},
"devDependencies": {
"@aduth/eslint-config": "^3.0.0",
"benchmark": "^2.1.4",
"eslint": "^5.12.1",
"eslint-plugin-jsdoc": "^4.0.0",
"jest": "^23.6.0",
"redux": "^4.0.1",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"uglify-js": "^3.4.9"
}
}