forked from ContentMine/quickscrape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "quickscrape",
"description": "A command line scraping tool for the modern web",
"version": "0.4.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"
},
"license": "MIT",
"main": "lib/quickscrape",
"engines": {
"node": ">= 0.8.14"
},
"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": {
"chalk": "~1.0.0",
"commander": "~2.7.1",
"moment": "~2.10.2",
"sanitize-filename": "^1.6.0",
"thresher": "git+https://github.com/tarrow/thresher.git",
"which": "~1.0.5",
"winston": "~1.0.0"
},
"bin": {
"quickscrape": "bin/quickscrape.js"
},
"devDependencies": {
"coveralls": "~2.11.2",
"eslint": "^3.2.2",
"eslint-config-google": "^0.6.0",
"grunt": "~0.4.5",
"istanbul": "~0.3.13",
"mocha": "~2.2.4",
"mocha-lcov-reporter": "0.0.2",
"should": "~4.0.0"
},
"keywords": [
"scraping",
"datamining",
"contentmining"
]
}