-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
65
66
67
68
69
70
{
"name": "hyperlink",
"version": "5.0.4",
"description": "A node library and command line tool to test the integrity of your internal an external hyperlinks",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha && npm run lint",
"coverage": "nyc mocha",
"preversion": "npm test",
"version": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md",
"test:ci": "npm run coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:Munter/hyperlink.git"
},
"keywords": [
"web",
"link",
"hyperlink",
"reference",
"asset",
"assetgraph"
],
"author": "Peter Müller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Munter/hyperlink/issues"
},
"bin": {
"hyperlink": "lib/cli.js"
},
"files": [
"lib"
],
"homepage": "https://github.com/Munter/hyperlink",
"dependencies": {
"@munter/tap-render": "^0.2.0",
"assetgraph": "^7.3.1",
"assetgraph-plugin-sitemap": "^1.0.0",
"async": "^3.1.0",
"hreftypes": "^1.0.1",
"pretty-bytes": "^5.2.0",
"request": "^2.88.0",
"urltools": "^0.4.2",
"yargs": "^16.0.3"
},
"devDependencies": {
"coveralls": "^3.0.8",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"httpception": "^3.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.6.1",
"prettier": "~2.4.1",
"sinon": "^9.0.0",
"unexpected": "^11.8.1",
"unexpected-set": "^2.0.1",
"unexpected-sinon": "^10.11.2"
}
}