-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 KB
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
60
{
"name": "export-html",
"configSchema": {
"fontSize": {
"type": "integer",
"default": 12
},
"openIn": {
"type": "string",
"default": "atom",
"enum": [
"atom",
"browser",
"none"
]
},
"style": {
"type": "string",
"default": "github",
"tilte": "Stylesheet",
"description": "Choose from [highlight.js styles.](https://github.com/isagalaev/highlight.js/tree/master/src/styles) ."
},
"lineNumber": {
"type": "object",
"properties": {
"use": {
"type": "boolean",
"default": true
},
"styles": {
"type": "string",
"title": "StyleSheet",
"default": "opacity: 0.5;"
}
}
},
"tabWidth": {
"type": "integer",
"default": 4
}
},
"main": "./lib/export-html",
"version": "3.1.0",
"description": "Write the file being displayed as HTML, it can be printed directly from the Atom.",
"keywords": [],
"activationCommands": {
"atom-workspace": "export-html:export"
},
"repository": "https://github.com/nobuhito/atom-export-html",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0",
"underscore-plus": "^1.6.6",
"highlight.js": "^8.7.0",
"roaster": "^1.2.0"
}
}