-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "sitecrawlr",
"version": "0.0.2",
"description": "A search utility for scanning a domain for terms or query selectors",
"bin": {
"sitecrawlr": "./bin/sitecrawlr"
},
"scripts": {
"test": "mocha -R spec"
},
"author": {
"name": "Mikael Engström",
"email": "[email protected]",
"url": "https://github.com/mikaelengstrom"
},
"repository": {
"type": "git",
"url": "https://github.com/mikaelengstrom/sitecrawlr"
},
"bin": {
"sitecrawlr": "bin/sitecrawlr"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/mikaelengstrom/sitecrawlr.git"
},
"license": "MIT",
"bugs": "https://github.com/mikaelengstrom/sitecrawlr/issues",
"dependencies": {
"async": "^1.5.0",
"autocmdr": "~0.0.7",
"cheerio": "^0.19.0",
"commander": "^2.0.0",
"stream-array": "^1.1.1",
"through": "^2.3.8",
"xml-stream": "^0.4.5"
},
"devDependencies": {
"express": "^4.13.3",
"jasmine": "^2.4.1",
"mocha": "^2.3.4"
}
}