-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.12 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
{
"name": "docker-host",
"version": "1.0.0",
"description": "Installation and configuration for setting up a Docker host in our environment.",
"scripts": {
"test": "npm run check-node",
"standards": "npm run shellcheck && npm run yamllint && npm run markdownlint && npm run cspell && npm run commitlint",
"check-node": "check-node-version --node $(cat .nvmrc) --npm 10.5.0 --print",
"commitlint": "commitlint --from 5b66a72cc2632916",
"cspell": "cspell . --show-suggestions --no-progress",
"shellcheck": "shellcheck **/*.sh",
"markdownlint": "markdownlint **/*.md --ignore node_modules",
"yamllint": "yamllint **/*.yml .*/**/*.yml --ignore=node_modules"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/uicpharm/docker-host.git"
},
"author": "Josh Curtiss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/uicpharm/docker-host/issues"
},
"homepage": "https://github.com/uicpharm/docker-host#readme",
"devDependencies": {
"@uicpharm/standardization": "github:uicpharm/standardization#0.4.1"
}
}