-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
83 lines (83 loc) · 2 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
78
79
80
81
82
83
{
"name": "getpapers",
"description": "Get fulltexts or fulltext URLs of papers matching a search query",
"version": "0.4.17",
"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"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ContentMine/getpapers/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.8.14"
},
"scripts": {
"test": "standard && 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",
"crossref": "^0.1.2",
"got": "^2.7.2",
"lodash": "^3.6.0",
"matched": "^0.4.1",
"mkdirp": "^0.5.0",
"progress": "^1.1.8",
"requestretry": "^1.12.0",
"restler": "^3.2.2",
"sanitize-filename": "^1.6.0",
"version_compare": "0.0.3",
"winston": "~2.3.1",
"xml2js": "^0.4.17"
},
"bin": {
"getpapers": "bin/getpapers.js"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "~2.11.2",
"grunt": "~0.4.5",
"istanbul": "~0.3.13",
"mocha": "~2.2.4",
"mocha-lcov-reporter": "0.0.2",
"nock": "^9.0.13",
"should": "~4.0.0",
"standard": "^10.0.2",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0"
},
"keywords": [
"scraping",
"datamining",
"contentmining",
"science"
],
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}