forked from ContentMine/getpapers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "getpapers",
"description": "Get fulltexts or fulltext URLs of papers matching a search query",
"version": "0.0.7",
"homepage": "https://github.com/ContentMine/getpapers",
"author": {
"name": "Richard Smith-Unna",
"email": "[email protected]",
"url": "http://contentmine.org"
},
"repository": {
"type": "git",
"url": "https://github.com/ContentMine/getpapers.git"
},
"bugs": {
"url": "https://github.com/ContentMine/getpapers/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ContentMine/getpapers/blob/master/LICENSE"
}
],
"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",
"got": "^2.7.2",
"lodash": "^3.6.0",
"mkdirp": "^0.5.0",
"progress": "^1.1.8",
"restler": "^3.2.2",
"winston": "~1.0.0"
},
"bin": {
"getpapers": "bin/getpapers.js"
},
"devDependencies": {
"grunt": "~0.4.5",
"coveralls": "~2.11.2",
"mocha-lcov-reporter": "0.0.2",
"should": "~4.0.0",
"istanbul": "~0.3.13",
"mocha": "~2.2.4"
},
"keywords": [
"scraping",
"datamining",
"contentmining",
"science"
]
}