-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·56 lines (56 loc) · 1.57 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
{
"name": "challenge-processor-es",
"version": "1.0.0",
"description": "Topcoder - Challenge ES Processor",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"init-es": "node src/init-es.js",
"view-data": "node test/common/view-data.js",
"test": "mocha test/unit/*.test.js --timeout 30000 --require test/unit/prepare.js --exit",
"e2e": "mocha test/e2e/*.test.js --timeout 30000 --exit",
"cov": "nyc --reporter=html --reporter=text mocha test/unit/*.test.js --timeout 30000 --require test/unit/prepare.js --exit",
"cov-e2e": "nyc --reporter=html --reporter=text mocha test/e2e/*.test.js --timeout 30000 --exit"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"standard": "^12.0.1",
"mocha-prepare": "^0.1.0",
"nock": "^9.4.4",
"uuid": "^3.3.2"
},
"dependencies": {
"aws-sdk": "^2.466.0",
"bluebird": "^3.5.1",
"config": "^3.0.1",
"get-parameter-names": "^0.3.0",
"http-aws-es": "^6.0.0",
"joi": "^14.0.0",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"no-kafka": "^3.4.3",
"@opensearch-project/opensearch": "^2.11.0",
"superagent": "^5.1.0",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6.4",
"topcoder-healthcheck-dropin": "^1.0.3",
"winston": "^3.1.0"
},
"standard": {
"ignore": [
"mock"
],
"env": [
"mocha"
]
},
"volta": {
"node": "12.22.12",
"yarn": "1.22.19"
}
}