-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.53 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
{
"name": "language-roff",
"version": "1.3.1",
"description": "Atom support for Unix manual pages (Groff/Troff) and the historical RUNOFF language.",
"keywords": ["Roff", "Groff", "Troff", "Nroff", "Typesetting", "RUNOFF", "DSR", "BSD", "Unix Manual Page", "Manpage", "man",
"mandoc", "mdoc", "Ronn", "Ditroff", "Eqn", "Pic", "Chem", "DFORMAT", "Grap", "Refer", "Tbl", "IDEAL", "grn", "Plan9"],
"repository": "https://github.com/Alhadis/language-roff",
"author": "John Gardner <[email protected]>",
"license": "ISC",
"engines": {"atom": ">=1.35.0"},
"atomTestRunner": "atom-mocha",
"scripts": {
"lint": "npx eslint .",
"test": "atom -t spec",
"update-fixtures": "cd spec/fixtures && node update input/* && mv input/*.json output && node prune"
},
"dependencies": {
"prompt-view": "^1.0.0",
"roff": "^0.2.0"
},
"devDependencies": {
"@alhadis/eslint-config": "^1.2.0",
"atom-mocha": "^2.2.1",
"eslint": "^6.4.0",
"first-mate": "^7.4.3",
"language-hyperlink": "atom/language-hyperlink"
},
"deserializers": {
"TroffView": "createTroffView"
},
"configSchema": {
"blankLineReplacement": {
"type": "string",
"title": "Blank-line replacement",
"description": "Specify the string which replaces empty lines when running the `fix-blank-lines` command.",
"default": ".",
"order": 1
},
"linkManPageReferences": {
"type": "boolean",
"title": "Link man-page references",
"description": "Make references to `man(1)` pages clickable inside comments and markup.",
"default": true,
"order": 2
}
}
}