-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1004 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
41
42
43
{
"name": "world-time-cli",
"version": "1.2.0",
"main": "cli.min.mjs",
"bin": {
"wtime": "./cli.min.mjs"
},
"scripts": {
"build": "uglifyjs cli.mjs --output cli.min.mjs --compress --mangle"
},
"files": [
"cli.min.mjs",
"countries_timezones.json",
"timezones.json"
],
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5"
},
"devDependencies": {
"uglify-js": "^3.19.3"
},
"description": "A simple yet handy Node.js command-line tool to see different countries current time.",
"author": "Arslan Ameer <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArslanAmeer/world-time-cli"
},
"bugs": {
"url": "https://github.com/ArslanAmeer/world-time-cli/issues"
},
"homepage": "https://github.com/ArslanAmeer/nworld-time-cli#readme",
"keywords": [
"node",
"nodejs",
"node cli",
"cli",
"world time",
"world time cli",
"world-time-cli"
]
}