-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.86 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
38
39
40
41
{
"name": "dealerdirect-guides",
"version": "0.1.0",
"description": "Dealerdirect guides for getting things done, be a programming hero, code in style and being the better colleague.",
"keywords": [
"dealerdirect",
"guides"
],
"author": "Franck Nijhof <f.nijhof@dealerdirect.nl>",
"homepage": "https://github.com/dealerdirect/guides",
"license": "MIT",
"dependencies": {
"alex": "^4.0.1",
"liquid-linter-cli": "^0.2.0",
"markdown-spellcheck": "^0.11.0",
"markdown-toc": "^1.1.0",
"remark-cli": "^2.1.0",
"remark-lint": "^5.2.0",
"remark-lint-books-links": "^1.0.0",
"remark-lint-no-empty-sections": "^1.0.0",
"remark-lint-no-url-trailing-slash": "^2.0.0",
"remark-preset-lint-dealerdirect": "^0.1.0",
"remark-validate-links": "^5.0.0"
},
"scripts": {
"lint:alex": "alex .",
"lint:remark": "remark -f . --ignore-path '.gitignore'",
"lint:liquid": "find . -type f -regextype posix-extended -regex '.*\\.(html|lqd|md)' -not -path '*/\\.*' -not -path './node_modules/*' -not -path './_site/*' -print0 | xargs -0 -n1 liquid-linter",
"lint:spellcheck": "find . -type f -name '*.md' -not -path './CHANGELOG.md' -not -path './node_modules/*' -not -path './_site/*' -print0 | xargs -0 -n1 mdspell --report --en-us --ignore-numbers --ignore-acronyms",
"lint:spellcheck-interactive": "find . -type f -name '*.md' -not -path './node_modules/*' -print0 | xargs -0 -n1 mdspell --en-us --ignore-numbers --ignore-acronyms",
"lint": "npm run lint:alex && npm run lint:remark && npm run lint:spellcheck-interactive && npm run lint:liquid",
"test": "npm run lint:alex && npm run lint:remark && npm run lint:spellcheck && npm run lint:liquid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dealerdirect/guides.git"
},
"bugs": {
"url": "https://github.com/dealerdirect/guides/issues"
}
}