-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "remark-validate-links",
"version": "2.0.2",
"description": "Validate links to headings and files in markdown",
"license": "MIT",
"keywords": [
"validate",
"link",
"reference",
"file",
"heading",
"remark"
],
"dependencies": {
"github-url-to-object": "^2.1.0",
"remark-slug": "^3.0.0",
"mdast-util-definitions": "^1.0.0",
"unist-util-visit": "^1.0.0",
"propose": "0.0.5",
"urljoin": "^0.1.5"
},
"repository": "wooorm/remark-validate-links",
"author": "Titus Wormer <[email protected]>",
"files": [
"index.js"
],
"devDependencies": {
"eslint": "^1.0.0",
"hook-std": "^0.1.0",
"istanbul": "^0.4.0",
"jscs": "^2.0.0",
"jscs-jsdoc": "^1.0.0",
"remark": "^3.0.0",
"remark-comment-config": "^2.0.0",
"remark-github": "^2.0.0",
"remark-lint": "^2.0.0",
"remark-toc": "^2.0.0",
"tape": "^4.0.0"
},
"scripts": {
"build-md": "remark . --quiet --frail",
"build": "npm run build-md",
"lint-api": "eslint .",
"lint-style": "jscs --reporter inline .",
"lint": "npm run lint-api && npm run lint-style",
"test-api": "node test/index.js",
"test-coverage": "istanbul cover test/index.js",
"test-travis": "npm run test-coverage",
"test": "npm run build && npm run lint && npm run test-coverage"
}
}