This repository has been archived by the owner on Mar 3, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 1.87 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
73
74
75
76
77
{
"name": "salmonjs",
"preferGlobal": true,
"version": "0.5.0",
"author": {
"name": "Fabio Cicerchia",
"email": "[email protected]",
"url": "http://www.fabiocicerchia.it"
},
"homepage": "http://www.salmonjs.org",
"description": "Web Crawler in Node.js to spider dynamically whole websites.",
"full_description": "It helps you to map / process entire websites, spidering them and parsing each page in a smart way. It follows all the links and test several times the form objects. In this way is possible to check effectively the whole website.",
"contributors": [
{
"name": "Fabio Cicerchia",
"email": "[email protected]"
}
],
"bin": {
"salmonjs": "./bin/salmonjs"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiocicerchia/salmonjs.git"
},
"bugs": {
"url": "https://github.com/fabiocicerchia/salmonjs/issues"
},
"keywords": [
"cli",
"web",
"crawler",
"salmonjs"
],
"dependencies": {
"optimist": "0.6.1",
"path": "0.4.9",
"colors": "0.6.2",
"redis": "0.10.2",
"glob": "3.2.9",
"winston": "0.7.3",
"insight": "0.3.1",
"request": "2.34.0",
"htmltidy": "0.0.6",
"URIjs": "1.13.1",
"jsonfn": "0.31.0"
},
"devDependencies": {
"jshint": "2.5.1",
"yuidocjs": "0.3.49",
"jasmine-node": "1.14.2",
"phapper": "0.1.9",
"grunt-cli": "0.1.13",
"grunt-jasmine-node-coverage": "0.1.8",
"grunt-contrib-jshint": "0.9.2",
"grunt-release": "0.7.0",
"grunt-contrib-yuidoc": "0.5.2",
"grunt-todo": "0.2.0",
"chai": "1.9.1",
"grunt-verb": "0.0.5"
},
"analyze": false,
"scripts": {
"test": "make test",
"coverage": "make coverage"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"main": "bin/salmonjs",
"directories": {
"lib": "src",
"bin": "bin",
"test": "test"
}
}