forked from Munter/hyperlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
{
"name": "hyperlink",
"version": "3.0.0",
"description": "A node library and command line tool to test the integrity of your internal an external hyperlinks",
"main": "lib/index.js",
"scripts": {
"lint": "jshint .",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:unit": "mocha",
"test:integration": "./bin/hyperlink testdata/missing-link.html",
"coverage": "nyc mocha",
"preversion": "npm test",
"travis": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:Munter/hyperlink.git"
},
"keywords": [
"web",
"link",
"hyperlink",
"reference",
"asset",
"assetgraph"
],
"author": "Peter Müller <munter@fumle.dk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Munter/hyperlink/issues"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"files": [
"lib",
"bin"
],
"homepage": "https://github.com/Munter/hyperlink",
"dependencies": {
"assetgraph": "^3.2.0",
"async": "^2.4.0",
"lodash": "^4.17.4",
"optimist": "^0.6.1",
"pretty-bytes": "^4.0.2",
"request": "^2.81.0",
"tap-render": "Munter/tap-render#0.1.7-patch1",
"urltools": "^0.3.1"
},
"devDependencies": {
"jshint": "^2.9.4",
"mocha": "^3.3.0",
"nyc": "^10.3.2",
"unexpected": "^10.29.0"
}
}