-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.36 KB
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
{
"name": "@github/markdownlint-github",
"version": "0.2.0",
"description": "An opinionated collection of markdownlint rules used by GitHub.",
"type": "module",
"exports": "./index.js",
"engines": {
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
},
"directories": {
"test": "test"
},
"scripts": {
"publish": "npm publish --access public --@github:registry=https://registry.npmjs.org",
"test": "npm run lint && NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!node_modules\" \"!docs/rules\" \"!test/example.md\" && eslint .",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"lodash-es": "^4.17.21",
"markdown-it": "14.2.0"
},
"devDependencies": {
"eslint": "^9.16.0",
"eslint-plugin-github": "^6.0.0",
"globals": "^17.0.0",
"jest": "^30.4.2",
"markdownlint": "^0.41.0",
"markdownlint-cli2": "^0.22.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/markdownlint-github.git"
},
"keywords": [
"markdownlint-rule"
],
"author": "Andri Alexandrou <andri.j.alexandrou@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/github/markdownlint-github/issues"
},
"homepage": "https://github.com/github/markdownlint-github#readme",
"overrides": {
"@babel/core": "^7.29.6"
}
}