forked from tldr-pages/tldr-lint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.28 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
{
"name": "tldr-lint",
"version": "0.0.14",
"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": "rubenvereecken@gmail.com"
},
"maintainers": [
{
"name": "tldr-pages team"
}
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"commander": "^12.0.0"
},
"devDependencies": {
"concurrently": "^8.0.1",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^9.0.6",
"jest": "^29.1.2",
"jison": "^0.4.18",
"onchange": "^7.1.0"
},
"funding": {
"type": "liberapay",
"url": "https://liberapay.com/tldr-pages"
},
"files": [
"lib/"
]
}