forked from shd101wyy/markdown-preview-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
113 lines (113 loc) · 2.74 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "markdown-preview-enhanced-with-litvis",
"version": "0.34.0",
"description": "Fork of markdown-preview-enhanced with https://github.com/gicentre/litvis",
"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/gicentre/markdown-preview-enhanced-with-litvis.git",
"license": "BSD-3, 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",
"fix": "yarn fix:tslint; yarn fix:prettier; yarn fix:yarn-deduplicate",
"fix:prettier": "prettier --write \"**/*.*\"",
"fix:tslint": "tslint --fix --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": {
"atom-package-deps": "^5.1.0",
"fs-extra": "^9.0.1",
"mume-with-litvis": "^0.33.0"
},
"devDependencies": {
"@types/atom": "^1.40.4",
"@types/cheerio": "0.22.21",
"@types/jquery": "^3.5.1",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@types/vfile": "^4.0.0",
"@types/vscode": "1.40.0",
"chinese-conv": "^1.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"prettier": "^1.19.1",
"prettier-plugin-packagejson": "^2.2.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7",
"yarn-deduplicate": "^3.0.0"
},
"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"
],
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeIndie"
}
}
},
"package-deps": [
"linter-ui-default",
"intentions",
"linter",
"busy-signal"
]
}