This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "aerux",
"version": "4.2.0",
"description": "An easy way to use redux with react",
"main": "lib/index.js",
"module": "es/index.js",
"types": "typings",
"scripts": {
"test": "jest",
"prebuild": "npm run test",
"build": "npm run build:es && npm run build:cjs",
"build:es": "tsc -p tsconfig.esnext.json",
"build:cjs": "tsc",
"prelint": "npm run test",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"flow": "flow",
"preversion": "npm run build",
"coverage": "npm run test && cat ./coverage/lcov.info | coveralls",
"publishOnly": "npm run build"
},
"files": [
"lib",
"es",
"src",
"typings"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/kagawagao/aerux.git"
},
"keywords": [
"redux",
"react-redux",
"redux-actions"
],
"author": {
"name": "kagawagao",
"email": "kingsongao1221@gmail.com",
"url": "http://kingsongao.com"
},
"license": "MIT",
"bugs": {
"url": "/~https://github.com/kagawagao/aerux/issues"
},
"homepage": "/~https://github.com/kagawagao/aerux#readme",
"devDependencies": {
"@types/jest": "^26.0.8",
"@types/lodash": "^4.14.158",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^16.9.3",
"@types/redux-actions": "^2.6.1",
"coveralls": "^3.1.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-test-renderer": "^16.13.1",
"redux": "^4.0.5",
"ts-jest": "^26.1.4",
"tslint": "^6.1.3",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.7"
},
"dependencies": {
"lodash": "^4.17.21",
"redux-actions": "^2.6.5"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-redux": "^7.0.3",
"redux": "^4.0.1"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write"
]
}
}