-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "pomodor",
"version": "1.0.3",
"description": "Pomodoro timer CLI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc && cp -R ./src/assets ./dist/src",
"prepublish": "npm run build",
"start": "node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"bin": {
"pomodor": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/fsrocha-dev/pomodor/issues"
},
"homepage": "https://github.com/fsrocha-dev/pomodor",
"keywords": [
"CLI",
"pomodoro",
"timer"
],
"author": "Frank Rocha",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/gradient-string": "^1.1.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/node-notifier": "^8.0.2",
"babel-plugin-transform-import-meta": "^2.2.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"commander": "^10.0.0",
"console-progress-bar": "^1.0.8",
"countdown": "^2.6.0",
"figlet": "^1.5.2",
"gradient-string": "^2.0.2",
"inquirer": "^9.1.4",
"jest": "^29.4.1",
"jest-watch-typeahead": "^2.2.2",
"node-notifier": "^10.0.1",
"node-notifier-fixed": "^5.1.3",
"progress-bar-cli": "^1.0.4",
"ts-jest": "^29.0.5"
}
}