-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "gin",
"version": "0.7.4",
"productName": "Gin",
"electronVersion": "0.36.4",
"description": "JavaScript Markdown Editor for Mac",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-packager . $npm_package_productName --overwrite --out=dist --platform=darwin --arch=x64 --version=$npm_package_electronVersion --app-version=$npm_package_version --icon=./assets/Icon.icns --app-bundle-id=com.mariuskueng.${npm_package_name}"
},
"repository": {
"type": "git",
"url": "git@github.com:mariuskueng/gin.git"
},
"keywords": [
"markdown",
"electron"
],
"author": "Marius Küng",
"bugs": {
"url": "https://github.com/mariuskueng/gin/issues"
},
"homepage": "https://github.com/mariuskueng/gin",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"codemirror": "^5.10.0",
"countable": "^2.1.1",
"electron-debug": "0.5.1",
"showdown": "1.3.0"
},
"devDependencies": {
"electron-packager": "5.2.1",
"electron-prebuilt": "0.36.4"
}
}