-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "tokyo-3",
"version": "1.0.6",
"description": "Worlds Best Pomodoro. 3rd Impact Imminent. Switching to Auxillary Power.",
"main": "dist/index.js",
"repository": "jww127/tokyo-3",
"scripts": {
"build": "tsc",
"test": "jest",
"watch": "npx jest --watch"
},
"bin": {
"tokyo": "./dist/index.js"
},
"files": [
"/dist",
"/images",
"README.md",
"LICENSE"
],
"keywords": [
"Pomodoro",
"Cli",
"Timer",
"Countdown",
"Clock"
],
"author": "github.com/jww127",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.1.2",
"@types/node": "^18.7.23",
"@types/node-notifier": "^8.0.3",
"@types/terminal-kit": "^2.5.0",
"@types/yargs": "^17.0.13",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"cfonts": "^3.1.1",
"colorette": "^2.0.19",
"node-notifier": "^10.0.1",
"terminal-kit": "^3.0.0",
"yargs": "^17.5.1"
}
}