-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "tldr-lint",
"version": "0.0.16",
"description": "A linting tool to validate tldr pages",
"repository": "tldr-pages/tldr-lint",
"scripts": {
"jison": "jison tldr.yy tldr.l -o lib/tldr-parser.js",
"lint": "eslint lib specs",
"prepare": "husky",
"test": "jest specs",
"watch": "concurrently 'npm run watch:jison' 'npm run watch:specs'",
"watch:jison": "onchange '*.l' '*.yy' -- npm run jison",
"watch:specs": "onchange 'specs/*.js' 'lib/*.js' '*.l' '*.yy' -- npm run test"
},
"bin": {
"tldr-lint": "lib/tldr-lint-cli.js",
"tldrl": "lib/tldr-lint-cli.js"
},
"keywords": [
"tldr",
"pages",
"lint",
"validate",
"format"
],
"author": {
"name": "Ruben Vereecken",
"email": "[email protected]"
},
"maintainers": [
{
"name": "tldr-pages team"
}
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"eslint-config-eslint": "^11.0.0",
"eslint-plugin-jest": "^28.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jison": "^0.4.18",
"onchange": "^7.1.0"
},
"funding": {
"type": "liberapay",
"url": "https://liberapay.com/tldr-pages"
},
"files": [
"lib/"
]
}