-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 933 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
25
26
{
"name": "docker-node",
"description": "Build official Docker images for Node.js",
"private": true,
"type": "commonjs",
"scripts": {
"format:toc": "doctoc --update-only .",
"format:toc:check": "doctoc --update-only --dryrun .",
"format:prettier": "prettier --write .",
"format:prettier:check": "prettier --check .",
"format:javascript": "eslint --fix",
"format:javascript:check": "eslint",
"lint": "run-s format:toc:check format:prettier:check format:javascript:check",
"lint:fix": "run-s format:toc format:prettier format:javascript",
"check:markdown-links": "find *.md docs/*.md -print0 | xargs -0 -n1 markdown-link-check -c markdown_link_check_config.json"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"doctoc": "2.5.0",
"eslint": "10.10.0",
"globals": "17.12.0",
"markdown-link-check": "3.15.0",
"npm-run-all2": "9.0.3",
"prettier": "3.9.6"
}
}