forked from shd101wyy/markdown-preview-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "markdown-preview-enhanced",
"main": "./out/src/extension",
"version": "0.16.3",
"description": "One of the 'BEST' markdown preview extensions for Atom editor!",
"repository": "https://github.com/shd101wyy/markdown-preview-enhanced",
"license": "NCSA",
"engines": {
"atom": ">=1.16.0"
},
"activationCommands": {
"atom-workspace": "markdown-preview-enhanced:toggle"
},
"activationHooks": [
"language-gfm:grammar-used",
"language-gfm-enhanced:grammar-used",
"language-markdown:grammar-used",
"language-pfm:grammar-used"
],
"files": [
"assets",
"images",
"keymaps",
"menu",
"out",
"styles",
"LICENSE.md",
"README.md",
"markdown.png"
],
"keywords": [
"markdown",
"presentation",
"image helper",
"katex",
"mathjax",
"mermaid",
"plantuml",
"wavedrom",
"pdf",
"html",
"exporter",
"toc",
"footer",
"graphviz",
"dot language",
"ePub",
"ebook",
"pandoc",
"beamer",
"latex"
],
"scripts": {
"build": "tsc --project .",
"build:watch": "tsc --project . --watch",
"lint": "tsc --project . --noEmit && tslint --project . && prettier-check --ignore-path .gitignore \"{.,src/**}/{*.{j,t}s,*.md,ts*.json}\"",
"lint-with-tests": "tsc --project . --noEmit && tslint --project . && prettier-check --ignore-path .gitignore \"{.,src/**,test/**}/{*.{j,t}s,*.md,ts*.json}\"",
"format": "prettier --write --ignore-path .gitignore \"{.,src/**}/{*.{j,t}s,*.md,ts*.json}\"",
"format-with-tests": "prettier --write --ignore-path .gitignore \"{.,src/**,test/**}/{*.{j,t}s,*.md,ts*.json}\""
},
"dependencies": {
"@shd101wyy/mume": "^0.4.6"
},
"devDependencies": {
"@types/atom": "^1.31.1",
"@types/jquery": "^3.3.29",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.0",
"@types/vfile": "^3.0.2",
"chinese-conv": "^1.0.1",
"prettier": "^1.16.4",
"prettier-check": "^2.0.0",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.0.3"
}
}