-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "wait-for-docker",
"version": "1.0.0",
"description": "A slim docker container to determine if other containers are ready for connections",
"main": "",
"scripts": {
"pretty": "prettier --ignore-path ./.gitignore \"*.+(yaml|yml|js|json|md)\"",
"format": "npm run pretty -- --write",
"format:check": "npm run pretty -- --list-different",
"lint": "npm run lint:dockerfile && npm run format:check",
"lint:dockerfile": "dockerfilelint Dockerfile",
"test": "./scripts/ci/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mycargus/wait-for-docker.git"
},
"keywords": [
"netcat",
"waiting",
"docker",
"container"
],
"author": "Michael Hargiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/mycargus/wait-for-docker/issues"
},
"homepage": "https://github.com/mycargus/wait-for-docker#readme",
"devDependencies": {
"dockerfilelint": "^1.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"Dockerfile": "npm run lint:dockerfile",
"*.{yaml|yml|js|json|md}": "npm run format"
}
}