forked from paperhive/oai-pmh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "oai-pmh2",
"version": "2.1.2",
"description": "OAI-PMH harvester module for nodejs",
"main": "src/index-entry.js",
"scripts": {
"cover": "nyc npm test",
"lint": "standard",
"test": "mocha -r should -r esm 'src/**/*.test.js' 'test/**/*.js'",
"test-cover": "nyc npm test",
"test-cover-submit": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"bin": {
"oai-pmh": "./bin/oai-pmh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtueme/oai-pmh.git"
},
"keywords": [
"oai-pmh",
"harvesting",
"crawl",
"metadata"
],
"author": "Benny Thomas <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/virtueme/oai-pmh/issues"
},
"homepage": "https://github.com/virtueme/oai-pmh",
"devDependencies": {
"babel-eslint": "^10.1.0",
"codecov": "^3.1.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.1",
"should": "^13.2.3",
"standard": "^14.3.3"
},
"dependencies": {
"commander": "^5.0.0",
"esm": "^3.2.4",
"got": "^10.7.0",
"lodash": "^4.17.15",
"query-string": "^6.12.1",
"xml2js": "^0.4.23"
},
"standard": {
"env": {
"mocha": true
},
"globals": [
"should"
],
"parser": "babel-eslint"
},
"engines": {
"node": ">=10"
}
}