-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
executable file
·37 lines (37 loc) · 1.15 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" : "node.io",
"description" : "A distributed data scraping and processing framework",
"version" : "0.5.1",
"homepage" : "http://github.com/chriso/node.io",
"keywords" : ["data","mapreduce","map","reduce","scraping","html","parsing","parse","scrape","process","processing","data"],
"author" : "Chris O'Hara <[email protected]>",
"main" : "./lib/node.io",
"directories" : { "lib" : "./lib/node.io" },
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/chriso/node.io/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/chriso/node.io.git"
},
"engines": { "node": ">=0.4.0" },
"preferGlobal": true,
"dependencies": {
"htmlparser": ">= 1.7.3",
"coffee-script": ">= 0.9.5",
"jquery": ">= 1.4.4",
"jsdom": ">= 0.2.0",
"request": "2.9.202",
"sigmund": ">= 1.0.0"
},
"devDependencies": { "expresso": "*" },
"bin": {
"io": "./bin/io",
"node.io": "./bin/node.io",
"node.io-web": "./bin/node.io-web"
},
"licenses": [{
"type": "MIT",
"url": "http://github.com/chriso/node.io/raw/master/LICENSE"
}]
}