-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.63 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
{
"name": "docker-compose-wait-for-healthy",
"version": "1.0.0",
"description": "This is a simple action that waits for your docker compose services to be `HEALTHY`",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"ci:build": "npm run build && npm run package",
"ci:test": "npm run test && npm run test:e2e",
"format": "prettier --write .",
"lint": "eslint \"{src,test}/**/*.ts\"",
"package": "ncc build",
"test": "npm run lint && npm run format",
"test:e2e": "docker compose up -d dummy && docker compose ps && INPUT_PATH=. INPUT_TIMEOUT=20 INPUT_SERVICES=dummy node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejhayes/docker-compose-wait-for-healthy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ejhayes/docker-compose-wait-for-healthy/issues"
},
"homepage": "https://github.com/ejhayes/docker-compose-wait-for-healthy#readme",
"devDependencies": {
"@actions/core": "^1.10.0",
"@auto-it/all-contributors": "^10.37.6",
"@auto-it/first-time-contributor": "^10.37.6",
"@auto-it/git-tag": "^10.37.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@vercel/ncc": "^0.36.1",
"action-docs": "^1.1.1",
"auto": "^10.37.6",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"source-map-support": "^0.5.21"
}
}