-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "standard-readme-preset",
"version": "1.0.8",
"description": "remark preset to configure remark-lint with rules that standard-readme",
"license": "ISC",
"keywords": [
"remark",
"lint",
"preset",
"standard",
"readme"
],
"repository": "RichardLitt/standard-readme-preset",
"bugs": "https://github.com/RichardLitt/standard-readme-preset/issues",
"author": "Richard Littauer <[email protected]> (http://burntfen.com)",
"contributors": [
"Richard Littauer <[email protected]> (http://burntfen.com)",
"Titus Wormer <[email protected]> (http://wooorm.com)",
"Dieter Geerts <[email protected]> (https://dietergeerts.github.io/)"
],
"files": [
"index.js",
"rules",
"util"
],
"coordinates": [
52.5006656,
13.4193688
],
"engines": {
"node": ">=10"
},
"dependencies": {
"github-slugger": "^1.2.0",
"mdast-util-to-string": "^1.0.4",
"remark-lint-appropriate-heading": "^2.0.3",
"unified-lint-rule": "^1.0.5",
"unist-util-position": "^3.0.0",
"unist-util-stringify-position": "^1.1.1"
},
"devDependencies": {
"nyc": "^13.2.0",
"remark": "^8.0.0",
"remark-cli": "^8.0.0",
"remark-lint": "^6.0.6",
"standard": "^12.0.0",
"tape": "^4.8.0",
"unist-util-select": "^3.0.1",
"vfile": "^2.2.0"
},
"scripts": {
"lint": "standard",
"lint-readme": "remark README.md --use ./lint-readme --no-stdout --frail",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run lint && npm run lint-readme && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
}
}