-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
59
60
61
62
63
64
65
{
"name": "legacy-challenge-processor",
"version": "1.0.0",
"description": "Topcoder - Legacy Challenge 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",
"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",
"sync-terms": "node src/scripts/sync-terms.js"
},
"repository": "https://github.com/topcoder-platform/legacy-challenge-processor",
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"should": "^13.2.3",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"standard": "^14.3.4"
},
"dependencies": {
"@hapi/joi": "^15.0.2",
"@topcoder-platform/topcoder-bus-api-wrapper": "^1.2.0",
"@topcoder-platform/topcoder-healthcheck-dropin": "^1.1.0",
"async-mutex": "^0.2.4",
"bluebird": "^3.7.2",
"config": "^3.3.1",
"get-parameter-names": "^0.3.0",
"gulp": "^4.0.2",
"http-json-response": "^1.0.1",
"ifxnjs": "^10.0.5",
"lodash": "^4.17.19",
"moment-timezone": "^0.5.32",
"no-kafka": "^3.4.3",
"q": "^1.5.1",
"showdown": "^1.9.1",
"superagent": "^6.0.0",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js.git#v2.6.4",
"underscore": "^1.10.2",
"util": "^0.12.3",
"winston": "^3.3.3"
},
"engines": {
"node": "10.x"
},
"standard": {
"env": [
"mocha"
]
},
"nyc": {
"exclude": [
"test/mock/*.js",
"test/common/*.js",
"test/unit/test.js",
"test/e2e/test.js"
]
},
"volta": {
"node": "12.22.12"
}
}