-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.74 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
66
67
68
{
"name": "topcoder-terms-api",
"version": "1.0.0",
"description": "TopCoder Terms V5 API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"init-db": "node src/init-db.js",
"test-data": "node src/test-data.js",
"test": "nyc --reporter=html --reporter=text mocha test/unit/test.js --timeout 30000 --exit",
"e2e": "nyc --reporter=html --reporter=text mocha test/e2e/test.js --timeout 30000 --exit"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"standard": "^17.1.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"config": "^3.3.11",
"cors": "^2.8.5",
"docusign-esign": "^8.0.1",
"ejs": "^3.1.9",
"express": "^4.19.2",
"express-interceptor": "^1.2.0",
"get-parameter-names": "^0.3.0",
"http-status-codes": "^2.3.0",
"joi": "^17.12.2",
"lodash": "^4.17.21",
"pg": "^8.11.4",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.2",
"superagent": "^8.1.2",
"swagger-ui-express": "^5.0.0",
"tc-bus-api-wrapper": "topcoder-platform/tc-bus-api-wrapper.git",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.4",
"topcoder-healthcheck-dropin": "^1.0.3",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"xmldom": "^0.6.0",
"xpath": "0.0.34",
"yamljs": "^0.3.0"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"/docusign_callback"
]
},
"nyc": {
"exclude": [
"src/init-db.js",
"src/test-data.js",
"docusign_callback/*.js",
"test/common/*.js",
"test/unit/*.js",
"test/e2e/*.js"
]
}
}