UNPKG

1.61 kBJSONView Raw
1{
2 "name": "wait-on",
3 "description": "wait-on is a cross platform command line utility and Node.js API which will wait for files, ports, sockets, and http(s) resources to become available",
4 "version": "6.0.0",
5 "main": "lib/wait-on",
6 "bin": {
7 "wait-on": "bin/wait-on"
8 },
9 "author": "Jeff Barczewski <info@codewinds.com>",
10 "repository": {
11 "type": "git",
12 "url": "http://github.com/jeffbski/wait-on.git"
13 },
14 "bugs": {
15 "url": "http://github.com/jeffbski/wait-on/issues"
16 },
17 "license": "MIT",
18 "scripts": {
19 "lint": "eslint \"lib/**/*.js\" \"test/**/*.js\" \"bin/wait-on\"",
20 "publish:next": "npm publish --tag next && npm view",
21 "test": "mocha --exit 'test/**/*.mocha.js'"
22 },
23 "engines": {
24 "node": ">=10.0.0"
25 },
26 "devDependencies": {
27 "eslint": "^7.29.0",
28 "eslint-config-prettier": "^8.3.0",
29 "eslint-config-standard": "^16.0.3",
30 "eslint-plugin-chai-friendly": "^0.7.1",
31 "eslint-plugin-import": "^2.23.4",
32 "eslint-plugin-node": "^11.1.0",
33 "eslint-plugin-promise": "^5.1.0",
34 "eslint-plugin-standard": "^5.0.0",
35 "expect-legacy": "^1.20.2",
36 "mkdirp": "^1.0.4",
37 "mocha": "^9.0.1",
38 "temp": "^0.9.4"
39 },
40 "dependencies": {
41 "axios": "^0.21.1",
42 "joi": "^17.4.0",
43 "lodash": "^4.17.21",
44 "minimist": "^1.2.5",
45 "rxjs": "^7.1.0"
46 },
47 "keywords": [
48 "wait",
49 "delay",
50 "cli",
51 "files",
52 "tcp",
53 "ports",
54 "sockets",
55 "http",
56 "exist",
57 "ready",
58 "available",
59 "portable",
60 "cross-platform",
61 "unix",
62 "linux",
63 "windows",
64 "win32",
65 "osx"
66 ]
67}