-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.36 KB
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
{
"name": "dockerfiles",
"version": "0.0.1",
"private": true,
"description": "Secure multi-stage Dockerfile templates for production container images — distroless, non-root, hadolint-clean, with a tool-rich agent sandbox for LLM-generated code. Python first; Node, TypeScript, Go, Rust, JAX planned.",
"license": "Apache-2.0",
"author": "Kunwar Sangram Singh <sangram@supreplabs.com>",
"homepage": "https://github.com/kssd/dockerfiles#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kssd/dockerfiles.git"
},
"bugs": {
"url": "https://github.com/kssd/dockerfiles/issues"
},
"keywords": [
"dockerfile",
"dockerfile-templates",
"docker",
"distroless",
"container-security",
"multi-stage-build",
"non-root-container",
"agent-sandbox",
"hadolint",
"python"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint:docker": "find . -type f \\( -name 'Dockerfile' -o -name 'Dockerfile.*' -o -name '*.dockerfile' \\) -not -path './node_modules/*' -print0 | xargs -0 -I{} hadolint --config .hadolint.yaml {}",
"lint": "npm run lint:md && npm run lint:docker && npm run format:check"
},
"devDependencies": {
"markdownlint-cli2": "^0.23.0",
"prettier": "^3.9.5"
}
}