-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "@w2-yamaguchi/gatsby-plugin-google-adsense",
"version": "1.0.1",
"description": "Gatsyby plugin for Google Adsense.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js ./",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w2-yamaguchi/gatsby-plugin-google-adsense.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"google",
"adsense",
"google adsense"
],
"author": "w2-yamaguchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/w2-yamaguchi/gatsby-plugin-google-adsense/issues"
},
"homepage": "https://github.com/w2-yamaguchi/gatsby-plugin-google-adsense#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"semantic-release": "^19.0.3"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}