-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.9 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
{
"homepage": "https://github.com/jiahengaa/router-keep-alive",
"repository": "https://github.com/jiahengaa/router-keep-alive",
"version": "1.0.8",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"keywords": [
"react",
"component",
"router-keep-alive",
"router"
],
"engines": {
"node": ">=10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"predeploy": "npm run build && cd example && npm run build",
"deploy": "gh-pages -d ./example/dist",
"release": "np --no-yarn --no-tests --no-cleanup"
},
"browserslist": [
"last 2 versions",
"Android >= 4.4",
"iOS >= 9"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "esnext"
},
"name": "router-keep-alive",
"authors": {
"name": "jiahengaa",
"email": "[email protected]"
},
"module": "dist/router-keep-alive.esm.js",
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-transition-group": "^4.2.4",
"autoprefixer": "^9.8.0",
"cssnano": "^4.1.10",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"less": "^3.11.1",
"np": "^6.2.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup-plugin-postcss": "^3.1.1",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-transition-group": "^4.4.1",
"tiny-warning": "^1.0.3"
}
}