-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.73 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": "in-case-of-fire",
"version": "1.0.0",
"description": "A minimal Electron application for app scheduler git",
"main": "main.js",
"scripts": {
"start": "npm run compile && electron main.js",
"compile": "browserify -t [ babelify --presets [ react es2015 ] ] src/app.js -o build/js/app.js",
"package": "npm run compile && electron-packager . --overwrite --all --prune=false --out=dist",
"deb": "electron-installer-debian --src dist/in-case-of-fire-linux-ia32/ --arch i386 --config config.json",
"deb64": "electron-installer-debian --src dist/in-case-of-fire-linux-x64/ --arch x64 --config config.json",
"windows32": "electron-installer-windows --src dist/in-case-of-fire-win32-ia32/ --config config.json",
"windows64": "electron-installer-windows --src dist/in-case-of-fire-win32-x64/ --config config.json",
"linuxWindows": "npm run package && npm run deb && npm run deb64 && npm run windows32 && npm run windows64"
},
"repository": "https://github.com/hendrixroa/in-case-of-fire",
"keywords": [
"Electron",
"quick",
"start",
"git ",
"emergency"
],
"author": {
"name": "Hendrix Roa",
"email": "[email protected]",
"url": "https://hendrixroa.github.io"
},
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"electron": "~1.6.2",
"electron-installer-debian": "^0.5.2",
"electron-installer-windows": "^0.2.0",
"electron-json-storage": "^3.0.7",
"electron-packager": "^8.7.2",
"simple-git": "^1.75.0"
},
"dependencies": {
"material-auto-rotating-carousel": "^1.4.2",
"react": "^0.14.8",
"react-dom": "^0.14.8"
}
}