forked from davidxmoody/metalsmith-broken-link-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "metalsmith-broken-link-checker",
"version": "0.1.9",
"description": "Metalsmith plugin to check for internal broken links",
"author": "David Moody <[email protected]> (https://davidxmoody.com/)",
"homepage": "https://github.com/davidxmoody/metalsmith-broken-link-checker",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/davidxmoody/metalsmith-broken-link-checker.git"
},
"main": "lib",
"scripts": {
"watch": "coffee --watch -o lib -c src/*.coffee & mocha --watch --harmony --compilers coffee:coffee-script/register",
"test": "mocha --harmony --compilers coffee:coffee-script/register",
"postinstall": "coffee -o lib -c src/*.coffee"
},
"keywords": [
"metalsmith",
"plugin",
"metalsmith.io",
"broken-links",
"broken-link-checker",
"link-checker"
],
"devDependencies": {
"mocha": "^2.2.5",
"chai": "^3.2.0",
"coffee-script": "^1.9.3",
"metalsmith": "^2.1.0"
},
"dependencies": {
"cheerio": "^0.19.0",
"coffee-script": "^1.9.3",
"urijs": "^1.17.0"
}
}