-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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-remark-blog-card",
"version": "1.0.1",
"description": "Gatsby plugin to embed external links beautifully in markdown.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js ./",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w2-yamaguchi/gatsby-remark-blog-card.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"blog card"
],
"author": "Wataru Yamaguchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/w2-yamaguchi/gatsby-remark-blog-card/issues"
},
"homepage": "https://github.com/w2-yamaguchi/gatsby-remark-blog-card#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.26.0",
"eslint-config-google": "^0.14.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"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"
},
"dependencies": {
"unist-util-visit": "^2.0.3"
}
}