-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 997 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 997 Bytes
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
{
"name": "chronos",
"version": "1.0.0",
"description": "Inspired by the Pomodoro Technique, this nice little app is a countdown timer that follows my traditional work model ∙ 50 minutes of focused work and 10 minute break.",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"build-dev": "webpack --mode=development",
"build-prod": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brayan/chronos.git"
},
"author": "Brayan Bedritchuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/brayan/chronos/issues"
},
"homepage": "https://brayan.com.br/chronos/",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^24.8.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}