forked from atom/markdown-preview
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.7 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
{
"name": "bbcode-preview",
"version": "0.0.1",
"main": "./lib/main",
"description": "Open a rendered version of the BBCode in the current editor.",
"repository": "https://github.com/Xenoveritas/bbcode-preview",
"license": "MIT",
"engines": {
"atom": "*"
},
"dependencies": {
"bitter-bbcode": "^0.0.1",
"cheerio": "0.15.0",
"fs-plus": "^3.0.0",
"highlights": "^3.0.1",
"temp": "^0.8.1",
"underscore-plus": "^1.0.0",
"wrench": "^1.5.0"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"deserializers": {
"BBCodePreviewView": "createBBCodePreviewView"
},
"configSchema": {
"liveUpdate": {
"type": "boolean",
"default": true,
"description": "Re-render the preview as the contents of the source changes, without requiring the source buffer to be saved. If disabled, the preview is re-rendered only when the buffer is saved to disk."
},
"openPreviewInSplitPane": {
"type": "boolean",
"default": true,
"description": "Open the preview in a split pane. If disabled, the preview is opened in a new tab in the same pane."
},
"grammars": {
"type": "array",
"default": [
"text.md",
"text.plain",
"text.plain.null-grammar"
],
"description": "List of scopes for languages for which previewing is enabled. See [this README](https://github.com/atom/spell-check#spell-check-package-) for more information on finding the correct scope for a specific language."
},
"useGitHubStyle": {
"title": "Use GitHub.com style",
"type": "boolean",
"default": false,
"description": "Use the same CSS styles for preview as the ones used on GitHub.com."
}
}
}