-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.18 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
{
"name": "@koromerzhin/docker",
"version": "1.0.0",
"description": "images docker",
"main": "main.js",
"scripts": {
"docker:build:all": "npm-run-all docker:build:php",
"docker:build:php": "node main.js build:php",
"docker:push:all": "npm-run-all docker:push:php",
"docker:push:php": "docker push koromerzhin/php -a",
"docker:image:ls": "korojscommands docker_getlocal-image",
"lint:all": "npm-run-all lint:docker lint:markdown",
"lint:docker:php": "npm-run-all lint:docker:php:fpm lint:docker:php:apache",
"lint:docker:php:fpm": "dockerfilelint $(find images/phpfpm -name \"Dockerfile\")",
"lint:docker:php:apache": "dockerfilelint $(find images/php-apache -name \"Dockerfile\")",
"lint:docker": "npm-run-all lint:docker:php",
"lint:markdown": "markdownlint README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koromerzhin/docker.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/koromerzhin/docker/issues"
},
"homepage": "https://github.com/koromerzhin/docker#readme",
"dependencies": {
"dockerfilelint": "1.8.0",
"korojscommands": "^1.2.12"
}
}