This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
97 lines (97 loc) · 3.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "markdown-writer",
"main": "./lib/markdown-writer",
"version": "2.11.12",
"description": "Make Atom a better Markdown editor and an easier static blogging tool.",
"keywords": [
"Markdown",
"AsciiDoc",
"Jekyll",
"Octopress",
"Hexo",
"Writing",
"Blogging"
],
"author": "Wang Zhuochun <[email protected]> (http://www.bicrement.com/)",
"repository": "https://github.com/zhuochun/md-writer",
"bugs": "https://github.com/zhuochun/md-writer/issues",
"license": "MIT",
"keymaps": [
"keymap.cson"
],
"activationCommands": {
"atom-workspace": [
"markdown-writer:new-post",
"markdown-writer:new-draft",
"markdown-writer:open-cheat-sheet",
"markdown-writer:create-default-keymaps",
"markdown-writer:create-project-configs"
],
"atom-text-editor": [
"markdown-writer:manage-post-tags",
"markdown-writer:manage-post-categories",
"markdown-writer:insert-link",
"markdown-writer:insert-footnote",
"markdown-writer:insert-image",
"markdown-writer:insert-image-file",
"markdown-writer:insert-image-clipboard",
"markdown-writer:insert-table",
"markdown-writer:toggle-code-text",
"markdown-writer:toggle-codeblock-text",
"markdown-writer:toggle-math-text",
"markdown-writer:toggle-mathblock-text",
"markdown-writer:toggle-bold-text",
"markdown-writer:toggle-italic-text",
"markdown-writer:toggle-keystroke-text",
"markdown-writer:toggle-strikethrough-text",
"markdown-writer:toggle-deletion-text",
"markdown-writer:toggle-addition-text",
"markdown-writer:toggle-substitution-text",
"markdown-writer:toggle-comment-text",
"markdown-writer:toggle-highlight-text",
"markdown-writer:toggle-h1",
"markdown-writer:toggle-h2",
"markdown-writer:toggle-h3",
"markdown-writer:toggle-h4",
"markdown-writer:toggle-h5",
"markdown-writer:toggle-ul",
"markdown-writer:toggle-ol",
"markdown-writer:toggle-task",
"markdown-writer:toggle-taskdone",
"markdown-writer:toggle-blockquote",
"markdown-writer:jump-to-previous-heading",
"markdown-writer:jump-to-next-heading",
"markdown-writer:jump-to-next-table-cell",
"markdown-writer:jump-to-reference-definition",
"markdown-writer:insert-toc",
"markdown-writer:update-toc",
"markdown-writer:publish-draft",
"markdown-writer:open-link-in-browser",
"markdown-writer:open-link-in-file",
"markdown-writer:fold-links",
"markdown-writer:fold-headings",
"markdown-writer:fold-h1",
"markdown-writer:fold-h2",
"markdown-writer:fold-h3",
"markdown-writer:focus-current-heading",
"markdown-writer:format-table",
"markdown-writer:format-order-list",
"markdown-writer:correct-order-list-numbers",
"markdown-writer:insert-new-line",
"markdown-writer:indent-list-line",
"markdown-writer:undent-list-line"
]
},
"engines": {
"atom": ">=1.9.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.0",
"fs-plus": "^3.0.0",
"js-yaml": "^3.0.0",
"guid": "0.0.12",
"season": "^6.0.0",
"emoji-regex": "^8.0.0",
"wcwidth": "^1.0.0"
}
}