-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 KB
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
{
"name": "mead",
"productName": "Mead",
"version": "0.2.0",
"description": "Markdown Editor",
"main": "source/app/index.js",
"scripts": {
"dist": "build --mac --win --linux",
"dist:current": "build",
"release": "npm run dist -- --publish=always --draft",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Perry Mitchell <perry@perrymitchell.net>",
"license": "MIT",
"build": {
"appId": "net.perrymitchell.mead",
"mac": {
"category": "public.app-category.productivity"
},
"nsis": {
"perMachine": true
},
"linux": {
"target": [
"rpm",
"AppImage",
"deb"
],
"packageCategory": "text",
"synopsis": "Mead: A simple Markdown Editor"
},
"fileAssociations": {
"ext": [
"md",
"markdown",
"mdown",
"mkdn",
"mkd",
"mdwn",
"mkdown",
"ron"
],
"name": "Markdown Files",
"role": "Editor"
}
},
"devDependencies": {
"electron": "^1.6.10",
"electron-builder": "^19.4.2"
},
"dependencies": {
"debounce": "~1.0.2",
"file-url": "~2.0.2",
"minimist": "~1.2.0",
"pify": "~3.0.0"
}
}