-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "markdownc3",
"version": "1.0.0",
"description": "Markdown Editor and Previewer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:32win": "build --win --ia32 ",
"dist:64win": "build --win --x64",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/el3um4s/markdown-c3.git"
},
"keywords": [
"markdown",
"construct3",
"electronjs"
],
"author": "Samuele de Tomasi",
"license": "ISC",
"bugs": {
"url": "https://github.com/el3um4s/markdown-c3/issues"
},
"homepage": "https://github.com/el3um4s/markdown-c3#readme",
"dependencies": {
"electron-debug": "^2.0.0",
"npm": ">=6.14.6",
"showdown": "^1.9.1"
},
"devDependencies": {
"electron": "^3.0.10",
"electron-builder": "^20.36.2"
},
"build": {
"productName": "Markdown C3",
"appId": "com.stranianelli.markdown-c3",
"directories": {
"output": "build"
},
"win": {
"target": "portable",
"icon": "src/icons/icon.ico"
}
}
}