-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 981 Bytes
/
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
{
"name": "rainbow-actions",
"version": "0.2.3",
"description": "Type safe and namespaced redux actions",
"main": "index.js",
"types": "index.d.js",
"scripts": {
"preversion": "npm run clean && npm ci && npm run install-peers && npm run types && npm test",
"postversion": "npm run prep && npm publish dist && git push --follow-tags",
"prep": "rm -rf dist && copyfiles ./src/* package.json README.md -f -a ./dist/",
"install-peers": "npm i immer@8 --no-save",
"clean": "rm -rf node_modules",
"types": "tsc",
"test": "jest"
},
"keywords": [
"redux",
"actions",
"typescript"
],
"author": "antonk52",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"copyfiles": "^2.4.1",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"peerDependencies": {
"immer": "^8.*.*"
},
"engines": {
"node": ">=12"
}
}