-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "gatsby-plugin-mailchimp",
"author": "Benjamin Hoffman <[email protected]>",
"version": "5.2.2",
"description": "A simple, lightweight Gatsby plugin to subscribe email addresses to your Mailchimp list",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/benjaminhoffman/gatsby-plugin-mailchimp#readme",
"bugs": {
"url": "https://github.com/benjaminhoffman/gatsby-plugin-mailchimp/issues"
},
"scripts": {
"test": "jest",
"build": "babel src -d .",
"watch": "babel src -d . -w",
"publish": "yarn build && npm publish",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/benjaminhoffman/gatsby-plugin-mailchimp.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsbyjs",
"mailchimp",
"mailchimp api"
],
"dependencies": {
"email-validator": "^2.0.4",
"jsonp": "^0.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^2.1.0",
"jest": "^26.0.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"webpack": "^4.29.6"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}