-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.1 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
80
81
82
{
"name": "markdown-seo-check",
"version": "1.0.0",
"private": true,
"description": "Validate markdown files with SEO best practices. Creates a pull request comment and fails if conditions are not met.",
"keywords": [
"seo",
"jamstack",
"markdown"
],
"homepage": "https://github.com/zentered/markdown-seo-check#readme",
"bugs": {
"url": "https://github.com/zentered/markdown-seo-check/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/markdown-seo-check.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/patrickheneise)"
],
"main": "dist/index.js",
"scripts": {
"start": "node -r dotenv/config src/index.mjs",
"build": "npm run lint && npm run test && npm run prepare",
"postinstall": "husky install",
"lint": "eslint .",
"prepare": "ncc build src/index.mjs -o dist --source-map --license licenses.txt",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,json,md,yml}": [
"prettier --write"
],
"*.{mjs,js}": [
"eslint --cache --fix"
]
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"glob-to-regexp": "^0.4.1",
"gray-matter": "^4.0.3",
"node-fetch": "^3.0.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@commitlint/config-conventional": "^13.2.0",
"@vercel/ncc": "^0.28.6",
"babel-jest": "^27.1.0",
"commitlint": "^13.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"jest-config": "^27.1.0",
"lint-staged": "^11.1.2",
"pinst": "^2.1.6",
"prettier": "^2.4.1"
},
"engines": {
"node": "12"
},
"release": {
"branches": [
"main"
]
}
}