-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.09 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
{
"name": "@planjs/react-utils",
"version": "0.0.42",
"description": "React Utils Library",
"keywords": [
"react",
"react-hook"
],
"homepage": "https://github.com/planjs/react-utils#readme",
"bugs": {
"url": "https://github.com/planjs/react-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planjs/react-utils.git"
},
"license": "MIT",
"author": {
"name": "fupengl",
"email": "[email protected]",
"url": "https://github.com/fupengl"
},
"sideEffects": false,
"main": "lib/index.js",
"module": "es/index.js",
"typings": "typings/index.d.ts",
"files": [
"lib",
"es",
"typings"
],
"scripts": {
"lint:fix": "eslint --fix --ext js,jsx,ts,tsx src",
"prepare": "npx husky install && stan-builder",
"prepublishOnly": "npm run release",
"release": "./scripts/release.sh",
"start": "stan-builder -w",
"test": "jest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@planjs/utils": "^1.15.6",
"@types/hoist-non-react-statics": "^3.3.1",
"fast-deep-equal": "^3.1.3",
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.8.1",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@planjs/fabric": "^0.0.91",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"@types/prop-types": "^15.7.5",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.14",
"husky": "^8.0.1",
"jest": "^27.0.6",
"lint-staged": "^10.2.13",
"react": "16.14.0",
"react-dom": "16.14.0",
"sort-package-json": "^1.57.0",
"stan-builder": "latest",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.3",
"typescript": "4.1.5"
},
"peerDependencies": {
"react": ">16.8.0",
"react-dom": ">16.8.0"
},
"publishConfig": {
"access": "public"
}
}