-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.2 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
{
"name": "use-mailchimp-form",
"version": "3.1.0",
"description": "MailChimp Form implemented in React Hooks",
"keywords": [
"mailchimp",
"react",
"hooks"
],
"homepage": "https://github.com/imgarylai/use-mailchimp-form#readme",
"bugs": {
"url": "https://github.com/imgarylai/use-mailchimp-form/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imgarylai/use-mailchimp-form.git"
},
"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"
}
},
"dependencies": {
"fetch-jsonp": "1.2.3",
"query-string": "7.1.3"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-typescript": "7.21.4",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@commitlint/prompt": "17.6.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "28.1.8",
"@types/jsonp": "0.2.1",
"@types/react": "17.0.58",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"babel-jest": "28.1.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"microbundle": "0.15.1",
"prettier": "2.8.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"semantic-release": "21.0.1",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}