npm sutff

This commit is contained in:
nicco 2018-05-22 18:56:44 +02:00
parent 00680b06f2
commit 499b4213b9
2 changed files with 30 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules
package-lock.json
out

26
package.json Executable file
View File

@ -0,0 +1,26 @@
{
"name": "volta",
"private": true,
"productName": "Volta",
"version": "1.0.0",
"license": "MIT",
"author": "Niccolo Borgioli",
"main": "./src/main.js",
"scripts": {
"pack:native": "electron-builder",
"pack:mac": "electron-builder --mac",
"pack:win": "electron-builder --win",
"pack:linux": "electron-builder --linux",
"pack:all": "electron-builder -mwl",
"start": "electron ."
},
"devDependencies": {
"electron": "^2",
"electron-builder": "^20.14.5"
},
"dependencies": {
"auto-launch": "^5",
"battery-level": "^3.0.0",
"electron-settings": "^3"
}
}