-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"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": ">=8.9.4"
},
"scripts": {
"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 test/**/*.ts --exit"
},
"dependencies": {
"@types/lodash": "^4.14.104",
"@types/mysql": "^2.15.2",
"@types/bluebird": "^3.5.20",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.0.35",
"@types/pino": "^4.7.1",
"@types/xml": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"lodash": "^4.17.5",
"mysql": "^2.15.0",
"pino": "^4.7.3",
"xml": "^1.0.1",
"xmldom": "^0.1.27",
"xo": "^0.18.2"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"awesome-typescript-loader": "^3.4.1",
"backpack-core": "^0.8.3",
"browser-sync": "^2.26.3",
"chai": "^4.1.2",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-typescript": "^4.0.1",
"gulp-watch": "^5.0.1",
"mocha": "^4.0.1",
"shelljs": "^0.7.8",
"source-map-support": "^0.4.15",
"supertest": "^3.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.3.2",
"typescript": "^2.7.2"
}
}