-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "logging-php-docker",
"description": "A Docker image that runs PHP-FPM, NGINX and demonstrates logging in JSON format to stdout in an AWS ECS environment. And for fun and out of curiosity the docker container can be build and deployed to AWS ECS using GitHub Actions 🚀",
"version": "1.0.0",
"repository": "git@github.com:jost-kuenzel/logging-php-docker-cloudwatch.git",
"author": "Jost Künzel <jost.kuenzel@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}