-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 856 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"license": "MIT",
"name": "hx-markdown-editor",
"version": "0.0.1",
"description": "",
"private": true,
"author": "Matthijs Kamstra aka [mck]",
"scripts": {
"prewatch": "haxe build_debug.hxml",
"haxebuild": "haxe build_debug.hxml",
"watch": "onchange 'src/*.hx' 'src/*/*.hx' 'src/*/*/*.hx' 'src/*/*/*/*.hx' 'src/assets/*/*.css' 'src/assets/*/*.html' 'src/assets/*/*.md' -v -- haxe build_debug.hxml && livereload docs/",
"electronbuild": "electron bin/",
"electron": "haxe build_debug.hxml && electron bin/",
"package": "electron-packager bin/ Monk-Markdown-Editor --platform darwin --out download --electron-version 1.6.8 --overwrite --icon=src/assets/icons/icon.png.icns"
},
"dependencies": {
"livereload": "^0.6.2",
"marked": "^0.3.6",
"electron-packager": "^8.7.2",
"onchange": "^3.2.1"
}
}