-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 918 Bytes
/
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
{
"name": "tomado",
"version": "1.0.0",
"description": "A simple pomodoro timer",
"main": "main.js",
"scripts": {
"test": "mocha --opts .mocha",
"build": "webpack && npm run clean && electron-packager . Tomado && cp app/assets/images/tomato.icns Tomado-darwin-x64/Tomado.app/Contents/Resources/electron.icns",
"dev": "webpack && electron .",
"clean": "rm -rf Tomado-darwin-x64",
"eslint": "eslint *.js"
},
"keywords": [],
"author": "Matthew Cale",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"electron": "^1.7.8",
"electron-packager": "^9.1.0",
"eslint": "^4.8.0",
"mocha": "^4.0.0",
"webpack": "^3.6.0"
}
}