-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.73 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.73 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@planjs/react-keep-alive",
"version": "0.0.14",
"description": "react keep alive",
"keywords": [
"keep-alive",
"react",
"react-keep-alive",
"react-router-keep-alive"
],
"homepage": "https://github.com/planjs/react-keep-alive#readme",
"bugs": {
"url": "https://github.com/planjs/react-keep-alive/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planjs/react-keep-alive.git"
},
"license": "ISC",
"author": "fupeng",
"sideEffects": false,
"main": "dist/index.cjs.js",
"umd:main": "lib/index.umd.js",
"unpkg": "lib/index.umd.min.js",
"module": "dist/index.esm.js",
"typings": "typings/index.d.ts",
"files": [
"dist",
"typings"
],
"scripts": {
"dev": "stan-builder -w",
"genlog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint:fix": "eslint --fix --ext jsx,ts,tsx src",
"prepare": "stan-builder",
"release": "./scripts/release.sh",
"test": "jest -u"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"package.json": [
"npx sort-package-json",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@planjs/utils": "^1.12.0",
"hoist-non-react-statics": "^3.3.2",
"js-md5": "^0.7.3"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@planjs/fabric": "^0.0.85",
"@testing-library/react": "^10.4.9",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.23",
"@types/js-md5": "^0.4.2",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-test-renderer": "^16.9.3",
"commitizen": "^4.2.1",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"react": "16.14.0",
"react-dom": "16.14.0",
"rimraf": "^3.0.2",
"stan-builder": "^0.11.3",
"standard-version": "^9.0.0",
"ts-jest": "26.3.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">=16.x",
"react-dom": ">=16.x"
},
"publishConfig": {
"access": "public"
}
}