forked from ContentMine/quickscrape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "quickscrape",
"description": "Very simple headless academic journal scraping script",
"version": "0.1.7",
"homepage": "https://github.com/ContentMine/quickscrape",
"author": {
"name": "Richard Smith-Unna",
"email": "[email protected]",
"url": "http://contentmine.org"
},
"repository": {
"type": "git",
"url": "https://github.com/ContentMine/quickscrape.git"
},
"bugs": {
"url": "https://github.com/ContentMine/quickscrape/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ContentMine/quickscrape/blob/master/LICENSE-MIT"
}
],
"main": "lib/quickscrape",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"phantomjs": "~1.9.7",
"casperjs": "~1.1.0",
"commander": "~2.2.0",
"spooky": "~0.2.4",
"jsdom": "~0.10.5",
"download": "~0.1.17",
"xpath": "0.0.6",
"winston": "~0.7.3",
"which": "~1.0.5"
},
"bin": {
"quickscrape": "bin/quickscrape.js"
},
"devDependencies": {
"grunt": "~0.4.4",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1",
"should": "~4.0.0",
"istanbul": "~0.2.10",
"mocha": "~1.20.0"
},
"keywords": [
"scraping",
"datamining",
"contentmining"
]
}