-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.31 KB
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
{
"name": "file-scanner-processor",
"version": "1.0.0",
"description": "Topcoder File Scanner Processor",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha test/*.test.js --exit",
"cov": "nyc --reporter=html --reporter=text mocha test/*.test.js --exit"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.391.0",
"@ronomon/pure": "^1.0.4",
"amazon-s3-uri": "^0.1.1",
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"clamav.js": "^0.12.0",
"config": "^3.3.9",
"get-parameter-names": "^0.3.0",
"joi": "^17.9.2",
"lodash": "^4.17.21",
"no-kafka": "^3.4.3",
"streamifier": "^0.1.1",
"tc-core-library-js": "topcoder-platform/tc-core-library-js.git#v2.6",
"topcoder-healthcheck-dropin": "^1.0.2",
"winston": "^3.10.0"
},
"engines": {
"node": "18.x"
},
"standard": {
"env": [
"mocha"
]
},
"volta": {
"node": "18.16.1",
"yarn": "1.22.19"
}
}