forked from tldr-pages/tldr-lint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "tldr-lint",
"version": "0.0.13",
"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 install",
"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": ">=14"
},
"license": "MIT",
"dependencies": {
"commander": "^9.0.0"
},
"devDependencies": {
"concurrently": "^7.0.0",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^7.0.1",
"jest": "^29.1.2",
"jison": "^0.4.18",
"onchange": "^7.1.0"
},
"files": [
"lib/"
]
}