forked from thamara/time-to-leave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.09 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
{
"name": "time-to-leave",
"productName": "Time to Leave",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "node test/time_math.test | tap-spec",
"lint": "./node_modules/.bin/eslint *.js src/ js/",
"lint-fix": "./node_modules/.bin/eslint *.js src/ js/ --fix",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icon-mac.icns --prune=true --out=release-builds",
"package-win": "electron-packager . --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/timer.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Time to Leave\""
},
"author": "Thamara Andrade",
"license": "ISC",
"devDependencies": {
"electron": "^6.0.9",
"electron-eslint": "^3.12.2",
"electron-packager": "^14.0.6",
"mocha": "^6.2.0",
"spectron": "^8.0.0"
},
"dependencies": {
"electron-store": "^5.0.0",
"node-notifier": "^5.4.3",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}