This repository has been archived by the owner on Jan 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "legacy-submission-processor",
"version": "1.0.0",
"description": "Topcoder - Legacy Submission Processor",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"mock-api": "NODE_ENV=test node test/mock/mock-api",
"test": "nyc --reporter=html --reporter=text mocha test/unit/*.test.js --timeout 20000 --exit",
"e2e": "nyc --reporter=html --reporter=text mocha test/e2e/test.js --timeout 20000 --exit"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"pm2": "^4.2.1",
"should": "^13.2.3",
"standard": "^14.0.1",
"superagent": "^5.1.0"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"@topcoder-platform/topcoder-submission-api-wrapper": "^1.1.0",
"async-mutex": "^0.1.3",
"axios": "^0.19.0",
"bluebird": "^3.7.0",
"config": "^3.2.3",
"get-parameter-names": "^0.3.0",
"http-json-response": "^1.0.1",
"ifxnjs": "^10.0.5",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.26",
"no-kafka": "^3.4.3",
"q": "^1.5.1",
"topcoder-healthcheck-dropin": "^1.0.3",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js.git#v2.6.4",
"winston": "^3.2.1"
},
"engines": {
"node": "10.x"
},
"standard": {
"env": [
"mocha"
]
},
"nyc": {
"exclude": [
"test/mock/*.js",
"test/common/*.js",
"test/unit/*.js",
"test/e2e/*.js"
]
}
}