-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "onboarding-checklist-processor",
"version": "1.0.0",
"description": "Onboarding API CheckList Processor",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "mocha test/unit/*.test.js --require test/unit/prepare.js --timeout 20000 --exit",
"test:cov": "nyc --reporter=html --reporter=text mocha test/unit/*.test.js --require test/unit/prepare.js --timeout 20000 --exit"
},
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"mocha": "^9.1.1",
"mocha-prepare": "^0.1.0",
"nock": "^13.1.3",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^11.1.2",
"standard": "^12.0.1",
"stringcase": "^4.3.1",
"superagent": "^5.3.1"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"async-mutex": "^0.2.4",
"bluebird": "^3.5.5",
"config": "^3.1.0",
"dotenv": "^10.0.0",
"get-parameter-names": "^0.3.0",
"informix-wrapper": "git+https://github.com/appirio-tech/informix-wrapper.git#less-logs",
"lodash": "^4.17.20",
"no-kafka": "^3.4.3",
"node-cron": "^3.0.0",
"tc-core-library-js": "^2.4.1",
"topcoder-healthcheck-dropin": "^1.0.3",
"underscore": "^1.13.1",
"winston": "^3.2.1"
},
"engines": {
"node": "14.x"
},
"standard": {
"env": [
"mocha"
]
}
}