-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "BlankUp-Electron",
"version": "1.1.0",
"description": "BlankUp wrapped in Electron.",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"stylus": "stylus styl/style.styl --out app/css --use url --with \"{limit: false}\" --watch",
"dev": "set DEV=true && concurrently --kill-others \"npm run stylus\" \"npm start\"",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build",
"dist-x": "build -ml",
"release": "build"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/HoverBaum/BlankUp-Electron.git"
},
"keywords": [
"Markdown",
"editor",
"Electron"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/HoverBaum/BlankUp-Electron/issues"
},
"homepage": "https://github.com/HoverBaum/BlankUp-Electron",
"devDependencies": {
"concurrently": "^2.2.0",
"electron-builder": "^5.16.0",
"electron-prebuilt": "^1.2.0",
"electron-reload": "^1.0.0",
"stylus": "^0.54.5"
},
"dependencies": {
"BlankUp": "^0.3.2",
"choo": "^3.2.0"
},
"build": {
"appId": "de.hendrikwallbaum.blankUpElectron",
"app-category-type": "public.app-category.productivity"
}
}