forked from ChrisWren/grunt-link-checker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "grunt-link-checker",
"author": "Chris Wren",
"version": "0.1.0",
"homepage": "https://github.com/chriswren/grunt-link-checker",
"description": "Finds broken links and resources on websites",
"repository": {
"type": "git",
"url": "https://github.com/chriswren/grunt-link-checker.git"
},
"bugs": {
"url": "https://github.com/chriswren/grunt-link-checker/issues"
},
"license": "MIT",
"main": "tasks/link-checker.js",
"scripts": {
"test": "grunt test"
},
"keywords": [
"grunt",
"plugin",
"gruntplugin",
"link-checker",
"broken",
"links",
"crawler"
],
"dependencies": {
"chalk": "^1.0.0",
"cheerio": "^0.19.0",
"fs": "0.0.2",
"libxmljs": "^0.19.7",
"mkdirp": "^0.5.1",
"path": "^0.11.14",
"simplecrawler": "^0.4.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-jshint": "^0.11.2",
"grunt-release": "^0.12.0",
"load-grunt-tasks": "^3.1.0",
"time-grunt": "^1.1.1"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"tasks",
"LICENSE"
]
}