-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 937 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
32
33
34
35
36
37
38
39
40
{
"name": "teamer",
"version": "0.0.3",
"description": "simple terminal tea timer",
"main": "build/index.js",
"bin": {
"teamer": "build/index.js"
},
"scripts": {
"test": "tsc && ./build/index.js -t 1",
"format": "prettier -w .",
"build": "tsc"
},
"type": "module",
"keywords": [
"tea",
"timer"
],
"author": "Benedikt Lüken-Winkels <b.lueken.winkels@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/beneluwi/teamer.git"
},
"homepage": "https://github.com/beneluwi/teamer",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.20",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/node-notifier": "^8.0.2",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.11.2",
"node-notifier": "^10.0.1",
"yargs": "^17.6.2"
}
}