This repository was archived by the owner on Feb 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.33 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
{
"name": "Box",
"version": "0.1.2",
"main": "main.js",
"license": "MIT",
"description": "OS X voice control app built with electron",
"repository": "thomascullen/voicebox",
"author": {
"name": "Thomas Cullen",
"email": "hello@thomascullen.io",
"url": "www.thomascullen.io"
},
"scripts": {
"build-osx": "electron-packager ./ VoiceBox --overwrite --out=dist --ignore='^dist|$' --platform=darwin --arch=x64 --version=0.33.0 --asar --icon=assets/icon.icns && cd dist/VoiceBox-darwin-x64 && zip -ryXq9 ../VoiceBox-${npm_package_version}.zip VoiceBox.app",
"build-linux": "electron-packager ./ VoiceBox --overwrite --out=dist --ignore='^/dist$' --platform=linux --arch=x64 --version=0.33.0 --asar && cd dist/VoiceBox-linux-x64 && zip -ryXq9 ../VoiceBox-${npm_package_version}.zip VoiceBox",
"rebuild-modules": "node ./node_modules/.bin/electron-rebuild"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-env": "^0.4.4",
"grunt-babel": "^5.0.3",
"grunt-electron": "^2.0.1",
"electron-rebuild": "^1.0.0",
"electron-prebuilt": "^0.33.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-clean": "^0.6.0"
},
"dependencies": {
"configstore": "^1.2.1",
"electron-debug": "^0.2.1",
"node-notifier": "^4.3.1",
"npm": "^3.3.5",
"react": "^0.13.3",
"request": "^2.63.0"
}
}