-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "legacy-sub-processor",
"version": "1.0.0",
"description": "Topcoder - Legacy Submission Processor Application",
"main": "index.js",
"scripts": {
"start:docker": "node -r dotenv/config index",
"test:docker": "npm run test",
"clean": "rm -rf node_modules && rm -rf coverage && rm -rf .nyc_output",
"start": "node index",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"mock-api": "node node_modules/legacy-processor-module/mock/mock-api",
"produce-test-event": "node node_modules/legacy-processor-module/test/produce-test-event",
"test": "npm run lint && nyc --reporter=html --reporter=text mocha test/tests.js --timeout 20000 --exit"
},
"dependencies": {
"async-mutex": "^0.1.3",
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"config": "^1.30.0",
"dd-trace": "^0.7.2",
"dotenv": "^6.0.0",
"flatted": "^2.0.0",
"http-json-response": "^1.0.1",
"ifxnjs": "^8.0.1",
"joi": "^13.4.0",
"legacy-processor-module": "git+https://github.com/topcoder-platform/legacy-processor-module.git#0.0.8.1",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"no-kafka": "^3.2.10",
"q": "^1.5.1",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6",
"topcoder-bus-api-wrapper": "^1.0.1",
"topcoder-error-logger": "topcoder-platform/topcoder-error-logger.git",
"topcoder-healthcheck-dropin": "^1.0.2",
"winston": "^2.4.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"should": "^13.2.3"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"docs/*",
"docker/*",
"coverage/*"
]
},
"nyc": {
"exclude": [
"test/*.js"
]
},
"engines": {
"node": "8.x"
}
}