-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.5 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
{
"author": {
"name": "Anthony van Winkle",
"email": "synthea@anthonyvanwinkle.com"
},
"description": "A Soundboard for Unscripted Theater",
"license": "Apache-2.0",
"main": "main.js",
"name": "synthea",
"productName": "Synthea",
"repository": {
"type": "git",
"url": "https://github.com/avanwinkle/synthea.git"
},
"version": "0.0.9",
"dependencies": {
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-aria": "^1.5.8",
"angular-drag-and-drop-lists": "^1.4.0",
"angular-material": "^1.1.0",
"angular-route": "^1.5.8",
"howler": "^2.0.0",
"jsonschema": "^1.1.0",
"node-fs": "^0.1.7"
},
"devDependencies": {
"documentation": "^3.0.4",
"electron": "^1.4.0",
"electron-installer-dmg": "^0.1.2",
"electron-packager": "^8.0.0",
"electron-prebuilt": "^1.4.0",
"jsdoc-to-markdown": "^1.3.7"
},
"scripts": {
"build": "npm run pack:osx",
"docs": "jsdoc2md --conf conf/jsdoc.conf.json scripts/**/*.js > api.md",
"pack:dmg": "electron-installer-dmg ./dist/Synthea-darwin-x64/$npm_package_productName.app $npm_package_productName --debug --out=./dist/ --icon=./assets/synthea_icon_apple.icns --background=./assets/bg_dmg.png --overwrite",
"pack:osx": "electron-packager . $npm_package_productName --out=dist --platform=darwin --arch=x64 --icon=assets/synthea_icon_apple.icns --overwrite=true",
"pack:win": "electron-packager . --out=dist --platform=win32 --arch=x64 --overwrite=true",
"start": "electron ."
}
}