-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.15 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
{
"name": "use-tw-zipcode",
"version": "2.0.4",
"description": "React hook for getting Taiwan zip code.",
"keywords": [
"taiwan",
"react",
"hook"
],
"homepage": "https://github.com/imgarylai/use-tw-zipcode#readme",
"bugs": {
"url": "https://github.com/imgarylai/use-tw-zipcode/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imgarylai/use-tw-zipcode"
},
"license": "MIT",
"author": "Gary Lai <[email protected]>",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle",
"commit": "git-cz",
"dev": "microbundle watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "jest --coverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@commitlint/prompt": "17.4.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.5.2",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"babel-jest": "27.5.1",
"commitizen": "4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"jest": "27.5.1",
"microbundle": "0.15.1",
"prettier": "2.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-release": "19.0.5",
"typescript": "4.9.4"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}