-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 1.98 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
{
"name": "@rjshooks/react-hooks",
"version": "1.0.0",
"description": "Useful react hooks for async programming, web3, etc",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hiddentao/react-hooks.git"
},
"keywords": [
"react",
"web3",
"hooks",
"async"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiddentao/react-hooks/issues"
},
"homepage": "https://github.com/hiddentao/react-hooks#readme",
"scripts": {
"prepare": "husky install",
"bootstrap": "lerna bootstrap --hoist",
"commitmsg": "commitlint -e $GIT_PARAMS",
"pre-release": "./scripts/prepare-release.sh",
"release": "./scripts/release.sh"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/react": "^18.0.5",
"husky": "^7.0.4",
"lerna": "^7.3.0",
"react": "^18.0.0",
"standard-version": "^9.3.2"
},
"peerDependencies": {
"react": "^16.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true
}