forked from hyperledger/besu-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.96 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
29
30
31
32
33
34
35
36
37
{
"name": "hyperledger-besu",
"version": "1.0.0",
"description": "Hyperledger Besu doc site",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test:links:check": "find . -name \\*.md ! -path \"./node_modules/*\" -exec ./node_modules/markdown-link-check/markdown-link-check -v -c CI/linkchecker/link_check_conf.json {} \\; 2>&1 | tee linkchecker.out",
"test:links:verify": "! grep -n '[✖]\\|ERROR' ./linkchecker.out",
"test:links": "npm run test:links:check && npm run test:links:verify",
"test:markdown:error": "node ./node_modules/markdownlint-cli/markdownlint.js --ignore 'env' --ignore 'node_modules' --config CI/markdownlint/lint-base-style.yml '**/*.md' 2>&1 | tee ./markdownlint.out",
"test:markdown:info": "node ./node_modules/markdownlint-cli/markdownlint.js --ignore 'env' --ignore 'node_modules' --config CI/markdownlint/lint-info-style.yml '**/*.md' 2>&1 | tee ./markdownlint_info.out",
"test:markdown:verify": "! grep -nE 'MD[0-9]+/.+' ./markdownlint.out",
"test:markdown": "npm run test:markdown:error && npm run test:markdown:verify",
"fix:markdown": "node ./node_modules/markdownlint-cli/markdownlint.js --fix --config CI/markdownlint/lint-base-style.yml '**/*.md'",
"lint:repo": "node_modules/repolinter/bin/repolinter.js --rulesetUrl https://github.com/hyperledger-labs/hyperledger-community-management-tools/raw/main/repo_structure/repolint.json",
"test": "npm run test:links && npm run test:markdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger/besu-docs.git"
},
"author": "Hyperledger Besu community",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperledger/besu-docs/issues"
},
"homepage": "https://github.com/hyperledger/besu-docs#readme",
"devDependencies": {
"markdown-link-check": "github:tcort/markdown-link-check",
"markdownlint-cli": "0.23.2",
"markdownlint": "0.21.0",
"repolinter": "^0.10.0"
}
}