-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "@github/markdownlint-github",
"version": "0.1.0",
"description": "An opinionated collection of markdownlint rules used by GitHub.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"publish": "npm publish --access public --@github:registry=https://registry.npmjs.org",
"test": "npm run lint && jest",
"lint": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!node_modules\" \"!docs/rules\" \"!test/example.md\" && eslint .",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-plugin-github": "^5.0.1",
"jest": "^29.5.0",
"markdownlint": "^0.36.1",
"markdownlint-cli2": "^0.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/markdownlint-github.git"
},
"keywords": [
"markdownlint-rule"
],
"author": "Andri Alexandrou <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/github/markdownlint-github/issues"
},
"homepage": "https://github.com/github/markdownlint-github#readme"
}