-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "OAI-PMH-Service",
"version": "1.0.0",
"description": "A standalone OAI-PMH provider for Nodejs that can support multiple data sources.",
"main": "index.js",
"license": "GPL-3.0",
"repository": "https://github.com/hatfieldlibrary/oai-provider-service",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "gulp dist-clean",
"distclean": "gulp dist-clean && gulp build && gulp copy-production",
"start": "cd dist && NODE_ENV=production node index",
"compile": "gulp dist-clean && gulp build && gulp copy-production",
"dev": "gulp build && gulp copy && cd dist && node index | pino -o 'short'",
"test": "node build.js && mocha --exit"
},
"dependencies": {
"@types/node": "^20.14.2",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-auth": "^4.2.0",
"lodash": "^4.17.21",
"mongodb": "^6.7.0",
"node": "^20.14.0",
"pino": "^9.1.0",
"tsx": "^4.16.2",
"xml": "^1.0.1",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"chai": "^5.1.1",
"gulp": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jsdom": "^24.1.0",
"mocha": "^10.6.0",
"rimraf": "^5.0.7",
"sinon": "^18.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}