-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
53 lines (53 loc) · 1.8 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
{
"name": "wait-port",
"version": "1.1.0",
"description": "Utility to wait for a TCP port to open.",
"main": "./lib/wait-port.js",
"bin": {
"wait-port": "./bin/wait-port.js"
},
"engines": {
"node": ">=10"
},
"man": "./man/wait-port.1",
"files": [
"bin",
"man",
"lib",
"index.d.ts"
],
"scripts": {
"lint": "eslint .",
"test": "DEBUG=wait-port nyc --report-dir 'artifacts/coverage' -x 'lib/**/*.spec.js' --reporter=html --reporter=text mocha --recursive -t 10000 'lib/**/*.spec.js'",
"test:ci": "DEBUG=wait-port nyc --report-dir 'artifacts/coverage' -x 'lib/**/*.spec.js' --reporter=html --reporter=text mocha --recursive -t 10000 'lib/**/*.spec.js' --reporter mocha-junit-reporter --reporter-options mochaFile=./artifacts/test-reports/test-results.xml",
"test:debug": "DEBUG=wait-port mocha --inspect --inspect-brk -t 10000 'lib/**/*.spec.js'",
"test:watch": "DEBUG=wait-port mocha --watch --recursive -t 10000 'lib/**/*.spec.js'",
"report-coverage": "nyc report --reporter=text-lcov > ./artifacts/coverage/coverage.lcov && codecov",
"debug": "DEBUG=wait-port mocha --recursive --inspect --debug-brk 'lib/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmkerr/wait-port.git"
},
"author": "Dave Kerr",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwmkerr/wait-port/issues"
},
"homepage": "https://github.com/dwmkerr/wait-port#readme",
"devDependencies": {
"codecov": "^3.8.2",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"nyc": "^15.1.0",
"sinon": "^14.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.3.0",
"debug": "^4.3.4"
}
}