-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
71
72
{
"name": "netlify-plugin-checklinks",
"description": "Netlify build plugin check your links and asset references",
"repository": "git://github.com/munter/netlify-plugin-checklinks.git",
"bugs": {
"url": "https://github.com/munter/netlify-plugin-checklinks/issues"
},
"version": "4.1.0",
"license": "BSD-3-Clause",
"maintainers": [
{
"name": "Peter Müller",
"email": "[email protected]"
}
],
"files": [
"manifest.yml",
"lib"
],
"keywords": [
"netlify",
"netlify-plugin",
"linkcheck",
"links",
"broken",
"linkrot"
],
"dependencies": {
"@munter/tap-render": "^0.2.0",
"globby": "^11.0.0",
"hyperlink": "5.0.4",
"tap-spot": "^1.1.2"
},
"devDependencies": {
"@netlify/build": "11.14.0",
"coveralls": "3.1.0",
"cpy-cli": "3.1.1",
"eslint": "7.26.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-mocha": "8.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"magicpen-prism": "5.0.0",
"mocha": "8.4.0",
"netlify-cli": "3.29.12",
"nyc": "15.1.0",
"offline-github-changelog": "3.0.1",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"unexpected": "12.0.3"
},
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "cpy site dist",
"lint": "eslint .",
"test": "mocha",
"test:ci": "npm run netlify-build && npm run coverage",
"netlify-build": "netlify-build",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"preversion": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"nyc": {
"include": [
"lib/**"
]
}
}