-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "redux-routines",
"version": "3.0.7",
"description": "Simple, yet effective tool for removing Redux boilerplate code.",
"keywords": [
"redux",
"routines",
"boilerplate"
],
"homepage": "https://github.com/svagi/redux-routines#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/svagi/redux-routines.git"
},
"bugs": {
"url": "https://github.com/svagi/redux-routines/issues"
},
"author": "Jan Svager <[email protected]> (https://github.com/svagi)",
"license": "MIT",
"main": "lib/index.js",
"module": "src/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf lib coverage && git reset --hard",
"lint": "standard src -v",
"build": "babel src --out-dir lib",
"preversion": "npm run clean && npm run lint && npm test && npm run build",
"version": "npm run build && git add -f -A lib",
"postversion": "git push && git push --tags && npm publish && npm run clean",
"test": "standard src && jest src"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"jest": "^28.0.0",
"rimraf": "^3.0.2",
"standard": "^17.0.0"
},
"dependencies": {
"redux-actions": "^2.6.5"
}
}