-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.1 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"scripts" : {
"lint:md" : "remark .",
"lint:docker" : "hadolint ./alpine/Dockerfile",
"test" : "npm-run-all --parallel --silent --continue-on-error lint:*",
"build" : "docker build -t devaloka/wp-cli:latest ./alpine",
"watch:lint:md" : "chokidar \"./**/*.md\" --ignore \"node_modules/**/*\" -c \"npm run --silent lint:md\"",
"watch:lint:docker": "chokidar \"./**/Dockerfile\" --ignore \"node_modules/**/*\" -c \"npm run --silent lint:docker\"",
"watch" : "npm-run-all --parallel --silent --continue-on-error watch:lint:*",
"ci:lint:md" : "remark --frail .",
"ci:lint:docker" : "docker run --rm -i hadolint/hadolint < ./alpine/Dockerfile",
"ci:test" : "npm run --silent ci:lint:md"
},
"devDependencies": {
"@whizark/remark-preset": "~0.8.0",
"chokidar-cli" : "~1.2.0",
"remark-cli" : "~5.0.0",
"remark-lint" : "~6.0.1",
"npm-run-all" : "~4.1.3"
},
"private" : true
}