-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
32 lines (32 loc) · 1.11 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
{
"name": "minta",
"version": "1.0.3",
"description": "Generate regular expressions with ease",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=developement electron .",
"start:prod": "electron .",
"build:osx": "npm run package:osx && npm run compress:osx",
"package:osx": "node_modules/.bin/electron-packager . Minta --out=dist/osx --platform=darwin --arch=x64 --overwrite --icon=resources/minta_600.icns",
"compress:osx": "cd dist/osx/Minta-darwin-x64 && tar cvzf Minta.tar.gz Minta.app",
"build:win": "node_modules/.bin/electron-packager . Minta --out=dist/win --platform=win32 --arch=x64 --overwrite --icon=resources/minta_600.ico"
},
"repository": "https://github.com/ecrmnn/minta",
"author": {
"name": "Daniel Eckermann",
"email": "[email protected]",
"url": "http://danieleckermann.com"
},
"license": "MIT",
"devDependencies": {
"bootstrap": "^3.3.7",
"clipboard": "^1.7.1",
"electron": "^1.7.10",
"regexgen": "^1.3.0",
"vue": "^2.5.13"
},
"dependencies": {
"cross-env": "^5.1.3",
"electron-packager": "^10.1.1"
}
}