-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"version": "0.0.0-development",
"name": "@telus/remark-config",
"description": "remark preset to configure remark-lint with rules that enforce the markdown style guide",
"homepage": "https://github.com/telus/remark-config",
"repository": {
"type": "git",
"url": "https://github.com/telus/remark-config.git"
},
"license": "MIT",
"main": "index.js",
"keywords": [
"telus",
"remark",
"preset",
"markdown",
"style",
"guide"
],
"engines": {
"node": ">=18"
},
"files": [
"index.js"
],
"bugs": {
"url": "https://github.com/telus/remark-config/issues"
},
"david": {
"ignore": [
"husky",
"remark-preset-lint-markdown-style-guide"
]
},
"scripts": {
"lint:audit": "npx audit-ci --config .audit-ci.jsonc",
"lint:ec": "npx editorconfig-checker",
"lint:js": "npx @telus/telus-standard --verbose",
"lint": "npm-run-all -p -c -l lint:*",
"test": "echo 'No tests'",
"prepare": "husky install"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"remark-preset-lint-markdown-style-guide": "^5.1.3"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@telus/semantic-release-config": "^2.4.0",
"@telus/telus-standard": "^4.1.0",
"audit-ci": "^6.6.1",
"editorconfig-checker": "^5.0.1",
"husky": "^8.0.3"
}
}