-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 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
61
62
63
64
65
66
67
68
{
"name": "typed-actions",
"version": "0.12.0",
"description": "Typed actions for redux",
"main": "index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/lttb/typed-actions.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lttb/typed-actions/issues"
},
"homepage": "https://github.com/lttb/typed-actions#readme",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "BABEL_ENV=production babel src --ignore '**/tests/**' --out-dir lib",
"postbuild": "npm run cp:flow && npm run cp:meta && npm run cp:d.ts",
"cp:meta": "copyfiles -e '**/tests/**' package.json README.md LICENSE 'src/.*' -a -f lib",
"cp:d.ts": "copyfiles -e '**/tests/**' dts/*.d.ts -f lib/.",
"cp:flow": "flow-copy-source -i '**/tests/*' src lib",
"lint": "npm run lint:eslint && npm run lint:flow && npm run lint:typescript",
"lint:eslint": "eslint .",
"lint:flow": "flow check --include-warnings --show-all-errors --max-warnings 0",
"lint:typescript": "tsc",
"preversion": "npm run lint",
"version": "npm run build",
"postversion": "git push --follow-tags && npm publish lib",
"precommit": "npm run lint:flow && lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-flow": "^7.14.5",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "2.14.0",
"flow-bin": "^0.83.0",
"flow-copy-source": "^2.0.9",
"flow-typed": "^3.8.0",
"husky": "^1.3.1",
"immer": "9.0.6",
"lint-staged": "^7.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/redux-actions": "^2.6.2",
"redux-actions": "^2.6.5"
},
"optionalDependencies": {
"immer": ">= 1.0.0",
"rxjs": ">= 5.5.0"
},
"engines": {
"node": ">=12"
}
}