-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "pomodoro-app",
"version": "1.0.4",
"description": "A minimal Pomodore technique application to help you control your focus.",
"main": "main.js",
"scripts": {
"start": "rm -rf ./dist && npm run dev && electron .",
"test": "eslint .",
"dev": "gulp default"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ftonato/pomodoro-app.git"
},
"author": "Ademílson F. Tonato",
"license": "MIT",
"bugs": {
"url": "https://github.com/ftonato/pomodoro-app/issues"
},
"homepage": "https://github.com/ftonato/pomodoro-app/#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"electron": "^3.0.3",
"eslint": "^5.6.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^3.10.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"pump": "^3.0.0"
},
"dependencies": {
"node-notifier": "^5.2.1",
"shortid": "^2.2.13"
}
}