forked from VirtueMe/oai-pmh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
{
"name": "oai-pmh2",
"version": "2.2.0",
"description": "OAI-PMH harvester module for nodejs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"type": "commonjs",
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:bin && npm run build:package-modes",
"build:bin": "BABEL_ENV=bin babel bin/oai-pmh --out-file 'dist/bin/oai-pmh' --source-maps --extensions '' && BABEL_ENV=bin babel bin/oai-pmh.js --out-file 'dist/bin/oai-pmh.js' --source-maps",
"build:esm": "BABEL_ENV=esm babel src --out-dir 'dist/esm' --source-maps",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir 'dist/cjs' --source-maps",
"build:package-modes": "echo '{\"type\": \"module\"}' > dist/esm/package.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json && echo '{\"type\": \"commonjs\"}' > dist/bin/package.json",
"cover": "nyc npm test",
"lint": "standard",
"test": "BABEL_ENV=test mocha -r should -r @babel/register 'src/**/*.test.js' 'test/**/*.js'",
"test-cover": "nyc npm test",
"test-cover-submit": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"bin": {
"oai-pmh": "./dist/bin/oai-pmh"
},
"files": [
"dist/*",
"index.d.ts"
],
"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/cli": "^7.14.8",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.15.3",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"codecov": "^3.8.3",
"mocha": "^9.1.0",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"should": "^13.2.3",
"standard": "^16.0.3"
},
"dependencies": {
"commander": "^8.1.0",
"core-js": "^3.16.0",
"got": "^11.8.0",
"lodash": "^4.17.0",
"lodash-es": "^4.17.0",
"query-string": "^7.0.0",
"xml2js": "^0.4.0"
},
"standard": {
"env": {
"mocha": true
},
"globals": [
"should"
],
"parser": "babel-eslint"
},
"engines": {
"node": ">=12.0.0"
}
}