forked from topcoder-platform/member-processor-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.33 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
{
"name": "tc-member-processor-es",
"version": "1.0.0",
"description": "Topcoder - Member Processor ES",
"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 --require test/unit/prepare.js --exit",
"e2e": "mocha test/e2e/*.test.js --exit",
"cov": "nyc --reporter=html --reporter=text mocha test/unit/*.test.js --require test/unit/prepare.js --exit",
"cov-e2e": "nyc --reporter=html --reporter=text mocha test/e2e/*.test.js --exit"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"chai": "^4.1.1",
"mocha": "^3.5.0",
"mocha-prepare": "^0.1.0",
"nock": "^9.4.4",
"nyc": "^12.0.2",
"standard": "^11.0.1"
},
"dependencies": {
"aws-sdk": "^2.286.2",
"bluebird": "^3.5.1",
"co": "^4.6.0",
"config": "^1.21.0",
"elasticsearch": "^15.1.1",
"get-parameter-names": "^0.3.0",
"http-aws-es": "^6.0.0",
"joi": "^9.0.4",
"lodash": "^4.17.10",
"no-kafka": "^3.2.4",
"topcoder-healthcheck-dropin": "^1.0.2",
"winston": "^2.2.0",
"moment": "^2.22.2"
},
"engines": {
"node": "8.x"
},
"standard": {
"env": [
"mocha"
]
}
}