forked from bheisig/i-doit-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "i-doit-docker",
"description": "Dockerized i-doit CMDB",
"keywords": [
"i-doit",
"idoit",
"CMDB",
"IT documentation",
"asset management"
],
"version": "0.3.0",
"homepage": "https://i-doit.com/",
"repository": {
"type": "git",
"url": "https://github.com/bheisig/i-doit-docker"
},
"bugs": {
"url": "https://github.com/bheisig/i-doit-docker/issues"
},
"license": "AGPL-3.0-or-later",
"author": "Benjamin Heisig <[email protected]> (https://i-doit.com/)",
"dependencies": {
"alex": "^9.0.1",
"husky": "^4.2.5",
"markdown-spellcheck": "git+https://github.com/lukeapage/node-markdown-spellcheck.git",
"npm-run-all": "^4.1.5",
"remark-cli": "^9.0",
"remark-frontmatter": "^3.0",
"remark-lint": "^8.0",
"remark-lint-match-punctuation": "^0.2.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-long-code": "^0.1.2",
"remark-lint-no-repeat-punctuation": "^0.1.3",
"remark-lint-no-trailing-spaces": "^2.0.1",
"remark-lint-write-good": "^1.2.0",
"remark-normalize-headings": "^2",
"remark-preset-lint-consistent": "^4.0",
"remark-preset-lint-recommended": "^5.0"
},
"scripts": {
"system": "./node_modules/.bin/run-s system:*",
"system:audit": "npm audit",
"system:doctor": "npm doctor",
"system:outdated": "npm outdated || exit 0",
"system:test": "npm test",
"test": "./node_modules/.bin/run-s test:*",
"test:docker-compose": "git ls-files | grep -e '^docker-compose' | xargs -i docker-compose -f {} config > /dev/null",
"test:markdown": "./node_modules/.bin/remark --ignore-path .gitignore .",
"test:shell": "git ls-files | grep -e '\\.sh$' | xargs shellcheck",
"test:spelling": "git ls-files | grep -e '\\.md$' | xargs ./node_modules/.bin/mdspell --report --ignore-numbers --ignore-acronyms --en-us",
"test:wording": "git ls-files | grep -e '\\.md$' | grep -v 'CODE_OF_CONDUCT.md' | xargs ./node_modules/.bin/alex",
"test:yaml": "git ls-files | grep -E '\\.(yml|yaml|.yml.dist)$' | xargs yamllint",
"sort-word-list": "sort .spelling | uniq > /tmp/.spelling && mv /tmp/.spelling .spelling"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm run system"
}
},
"remarkConfig": {
"settings": {},
"plugins": [
"lint",
"lint-no-empty-sections",
[
"remark-frontmatter",
{
"type": "yaml",
"marker": "-"
}
],
"remark-lint-match-punctuation",
[
"remark-lint-no-dead-urls",
{
"skipLocalhost": true
}
],
[
"remark-lint-no-long-code",
{
"length": 100
}
],
"remark-lint-no-repeat-punctuation",
"remark-lint-no-trailing-spaces",
[
"remark-lint-write-good",
[
"warn",
{
"passive": false
}
]
],
"remark-preset-lint-consistent",
"remark-preset-lint-recommended"
]
}
}