-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "legacy-groups-processor",
"version": "1.0.0",
"description": "Topcoder - Legacy Groups Processor",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"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": {
"should": "^13.2.3",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"superagent": "^4.1.0",
"standard": "^11.0.1"
},
"dependencies": {
"bluebird": "^3.5.3",
"config": "^1.31.0",
"get-parameter-names": "^0.3.0",
"ifxnjs": "^8.0.1",
"joi": "^14.3.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mysql2": "^1.6.5",
"neo4j-driver": "^4.4.5",
"no-kafka": "^3.4.3",
"q": "^1.5.1",
"request-promise": "^4.2.5",
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6.4",
"topcoder-healthcheck-dropin": "^1.0.2",
"winston": "^3.2.1"
},
"engines": {
"node": "8.x"
},
"standard": {
"env": [
"mocha"
]
},
"nyc": {
"exclude": [
"test/common/*.js",
"test/unit/test.js",
"test/e2e/test.js"
]
}
}