-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.1 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
{
"name": "@wecreatesoftware/redux-higher-order-reducers",
"version": "5.3.2",
"description": "Generic higher order reducers for Redux.",
"main": "dist/redux.higher.order.reducers.js",
"jsnext:main": "dist/redux.higher.order.reducers.es.js",
"module": "dist/redux.higher.order.reducers.es.js",
"esnext": "src/wecreate/software/redux.higher.order.reducers.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist docs",
"build": "npm run healthcheck && npm run clean && npm run docs && npm run rollup",
"docs": "esdoc",
"docs:open": "npm run docs && open ./docs/index.html",
"healthcheck": "npm run lint && npm run test",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "npm run build",
"rollup": "rollup -c rollup.config.js",
"test": "jest",
"update": "ncu -u && npm i && npm run healthcheck"
},
"repository": {
"type": "git",
"url": "https://github.com/wecreatesoftware/redux-higher-order-reducers"
},
"keywords": [
"react",
"redux",
"react-redux",
"reducers",
"higher order reducers",
"reuseable reducers"
],
"author": "Matt Struensee <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/plugin-external-helpers": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@babel/register": "7.14.5",
"@rollup/plugin-babel": "5.3.0",
"@wecreatesoftware/eslint-config": "1.2.10",
"babel-jest": "27.0.6",
"babel-loader": "8.2.2",
"babelrc-rollup": "3.0.0",
"coveralls": "3.1.1",
"esdoc": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"jest": "27.0.6",
"npm-check-updates": "11.8.3",
"rimraf": "3.0.2",
"rollup": "2.56.2",
"rollup-plugin-terser": "7.0.2"
}
}