-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.1 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
{
"name": "mdview",
"version": "3.2.0",
"description": "Standalone Markdown Viewer",
"keywords": [
"markdown",
"md",
"viewer",
"standalone"
],
"homepage": "https://github.com/c3er/mdview",
"repository": {
"type": "git",
"url": "https://github.com/c3er/mdview.git"
},
"author": "Christian Dreier",
"license": "MIT",
"main": "app/main.js",
"bugs": {
"url": "https://github.com/c3er/mdview/issues"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"dist": "electron-builder --config build/deployConfig.js",
"dist-ci": "electron-builder -p never --config build/deployConfig.js",
"lint": "eslint . --max-warnings 0; prettier --check .",
"test": "mocha --exclude **/integration*",
"test-int": "mocha --timeout 20000",
"test-all": "eslint . --max-warnings 0 && prettier --check . && mocha --timeout 20000",
"test-ci": "eslint . --max-warnings 0 && prettier --check . && xvfb-maybe -- mocha --timeout 20000",
"format": "prettier --write .",
"fix": "eslint . --fix; prettier --write ."
},
"dependencies": {
"@electron/remote": "2.1.2",
"github-markdown-css": "5.8.1",
"github-markdown-dracula-css": "4.0.3",
"highlight.js": "11.11.0",
"iconv-lite": "0.6.3",
"jschardet": "3.1.4",
"markdown-it": "14.1.0",
"markdown-it-abbr": "2.0.0",
"markdown-it-anchor": "9.2.0",
"markdown-it-container": "4.0.0",
"markdown-it-emoji": "3.0.0",
"markdown-it-footnote": "4.0.0",
"markdown-it-html5-embed": "1.0.0",
"markdown-it-mark": "4.0.0",
"markdown-it-multimd-table": "4.2.3",
"markdown-it-new-katex": "2.0.3",
"markdown-it-sub": "2.0.0",
"markdown-it-sup": "2.0.0",
"markdown-it-task-checkbox": "1.0.6",
"mermaid": "11.4.1"
},
"devDependencies": {
"clipboardy": "4.0.0",
"electron": "33.2.1",
"electron-builder": "25.1.8",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"lodash.clonedeep": "4.5.0",
"mocha": "11.0.1",
"playwright": "1.49.1",
"prettier": "3.4.2",
"tslib": "2.8.1",
"xvfb-maybe": "0.2.1"
}
}