-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "remark-lint-appropriate-heading",
"version": "2.0.4",
"description": "Check that the top-level heading matches the directory name",
"main": "dist/appropriate-heading.js",
"dependencies": {
"github-slugger": "^1.1.1",
"mdast-util-to-string": "^1.0.2",
"unified-lint-rule": "^1.0.0",
"unist-util-is": "^2.0.0",
"unist-util-position": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"remark": "^7.0.0",
"remark-cli": "^3.0.0",
"remark-lint": "^6.0.0",
"standard": "^8.6.0",
"tape": "^4.6.3",
"vfile": "^4.0.2"
},
"scripts": {
"lint": "standard",
"build-lib": "babel lib -d dist",
"build-md": "remark . -qfo",
"build": "npm run build-md && npm run build-lib",
"test-api": "node test",
"test": "npm run lint && npm run build && npm run test-api"
},
"standard": {
"ignore": [
"dist"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/RichardLitt/remark-lint-appropriate-heading.git"
},
"keywords": [
"remark",
"lint",
"markdown",
"md",
"title",
"heading"
],
"bugs": {
"url": "https://github.com/RichardLitt/remark-lint-appropriate-heading/issues"
},
"homepage": "https://github.com/RichardLitt/remark-lint-appropriate-heading",
"author": "Richard Littauer <[email protected]> (http://burntfen.com)",
"license": "MIT",
"coordinates": [
45.5191722,
-73.57892559999999
]
}