-
-
Notifications
You must be signed in to change notification settings - Fork 516
/
package.json
100 lines (100 loc) · 2.48 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
98
99
100
{
"name": "markdown-preview-enhanced",
"version": "0.19.6",
"description": "One of the 'BEST' markdown preview extensions for Atom editor!",
"keywords": [
"beamer",
"dot language",
"ePub",
"ebook",
"exporter",
"footer",
"graphviz",
"html",
"image helper",
"katex",
"latex",
"markdown",
"mathjax",
"mermaid",
"pandoc",
"pdf",
"plantuml",
"presentation",
"toc",
"wavedrom"
],
"repository": "https://github.com/shd101wyy/markdown-preview-enhanced",
"license": "NCSA",
"main": "./out/src/extension",
"files": [
"assets",
"images",
"keymaps",
"menu",
"out",
"styles",
"LICENSE.md",
"README.md",
"markdown.png"
],
"scripts": {
"build": "tsc --project .",
"build:watch": "tsc --project . --watch",
"docsify": "docsify serve ./docs",
"fix": "yarn fix:tslint; yarn fix:prettier; yarn fix:yarn-deduplicate",
"fix:prettier": "prettier --write \"**/*.*\"",
"fix:tslint": "tslint --project .",
"fix:yarn-deduplicate": "yarn install && yarn-deduplicate --strategy=fewer && yarn install",
"lint": "yarn lint:prettier && yarn lint:tsc && yarn lint:tslint && yarn lint:yarn-deduplicate",
"lint:prettier": "prettier --check \"**/*.*\"",
"lint:tsc": "tsc --project . --noEmit",
"lint:tslint": "tslint --project .",
"lint:yarn-deduplicate": "yarn-deduplicate --fail --list --strategy=fewer"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.*": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@shd101wyy/mume": "0.7.1"
},
"devDependencies": {
"@types/atom": "^1.36.2",
"@types/cheerio": "^0.22.18",
"@types/jquery": "^3.3.32",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/vfile": "^4.0.0",
"@types/vscode": "1.40.0",
"chinese-conv": "^1.0.1",
"docsify-cli": "^4.4.3",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"prettier-plugin-packagejson": "^2.0.10",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5",
"yarn-deduplicate": "^2.1.1"
},
"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"
]
}