-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 861 Bytes
/
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
{
"name": "ingest",
"private": true,
"version": "0.0.1",
"description": "Cloud Storage file ingestion service",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "TIMING=1 eslint \"src/**/*.js\"",
"test": "NODE_ENV=test mocha \"src/**/*.test.js\" --recursive"
},
"author": "andrejusk",
"license": "MIT",
"dependencies": {
"@google-cloud/pubsub": "^2.19.0",
"@google-cloud/storage": "^5.18.3",
"body-parser": "^1.19.2",
"child_process": "^1.0.2",
"clamscan": "^2.1.2",
"express": "^4.17.3",
"morgan": "^1.10.0",
"util": "^0.12.4",
"winston": "^3.7.2"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.2",
"sinon": "^13.0.1",
"supertest": "^6.2.2"
}
}