-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "ripe-country-stat",
"version": "0.1.0",
"description": "Get the IP prefix count stats for any country.",
"engines": {
"node": ">=12"
},
"preferGlobal": true,
"bin": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"author": {
"name": "İlteriş Yağıztegin Eroğlu (linuxgemini)",
"email": "ilteris@asenkron.com.tr",
"url": "https://linuxgemini.space"
},
"maintainers": [
{
"name": "İlteriş Yağıztegin Eroğlu (linuxgemini)",
"email": "ilteris@asenkron.com.tr",
"url": "https://linuxgemini.space"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/linuxgemini/ripe-country-stat.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"cli-progress": "^3.8.2",
"commander": "^6.1.0",
"csv-stringify": "^5.5.1",
"inquirer": "^7.3.3",
"node-fetch": "^2.6.1"
}
}