-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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": "@nondef/ts-oai-pmh",
"version": "0.0.2",
"description": "OAI-PMH harvester module for nodejs - typescript refactor",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "cp package*.json dist && cd dist && pnpm install --prod",
"test": "nyc --reporter=lcov mocha --exit --require ts-node/register test/*.ts",
"coverage:badge": "coverage-badge-creator",
"bin": "node dist/bin/index.js",
"document": "npx typedoc src/index.ts",
"format:check": "prettier . --cache --check --ignore-path ./.gitignore",
"format:fix": "pnpm run format:check --write",
"lint:fix": "eslint . --cache --ext .js,.ts --ignore-path ./.gitignore --fix",
"validate": "run-p format:fix lint:fix"
},
"bin": {
"ts-boilerplate": "dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctot-nondef/oai-pmh.git"
},
"keywords": [
"ts",
"typescript",
"oai-pmh",
"harvesting",
"crawl",
"metadata"
],
"author": "Christoph Hoffmann",
"license": "GPL-3.0",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"@types/node": "18.11.10",
"@types/xml2js": "^0.4.14",
"@types/lodash": "^4.14.202",
"@acdh-oeaw/prettier-config": "^1.0.1",
"@acdh-oeaw/tsconfig": "^1.0.1",
"@acdh-oeaw/eslint-config": "^1.0.5",
"chai": "^4.1.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typedoc": "^0.25.6",
"prettier": "^3.1.1",
"eslint": "^8.56.0",
"typescript": "^5.2.2",
"npm-run-all2": "^6.1.1"
},
"dependencies": {
"commander": "9.5.0",
"axios": "^1.6.3",
"xml2js": "^0.6.2",
"zod": "^3.22.4"
},
"standard": {
"env": {
"mocha": true
}
},
"engines": {
"node": ">=18"
},
"eslintConfig": {
"extends": [
"@acdh-oeaw/eslint-config",
"@acdh-oeaw/eslint-config/strict"
]
},
"prettier": "@acdh-oeaw/prettier-config"
}