forked from ahmadawais/ramadan-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 945 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
44
45
46
47
48
{
"name": "ramadan-cli",
"version": "1.5.0",
"description": "Check Sehar and Iftar times in Ramadan within your terminal.",
"license": "MIT",
"repository": "ahmadawais/ramadan-cli",
"author": {
"name": "Ahmad Awais",
"email": "[email protected]",
"url": "https://twitter.com/MrAhmadAwais"
},
"main": "index.js",
"engines": {
"node": ">=12.x"
},
"bin": {
"ramadan-cli": "index.js"
},
"files": [
"index.js",
"utils/*",
"data/*"
],
"keywords": [
"ramadan-cli",
"Ahmad Awais",
"ahmadawais"
],
"devDependencies": {
"ava": "^3.7.1",
"execa": "^4.0.0",
"prettier": "^2.0.5"
},
"scripts": {
"test": "ava",
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"chalk": "^4.0.0",
"cli-check-node": "^1.3.0",
"cli-handle-error": "^4.1.0",
"cli-handle-unhandled": "^1.1.0",
"cli-table3": "^0.6.0",
"cli-welcome": "^1.4.0",
"log-symbols": "^3.0.0",
"meow": "^6.1.0"
}
}