-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@k03mad/ip2geo",
"version": "11.5.0",
"description": "GeoIP library",
"maintainers": [
"Kirill Molchanov <k03.mad@gmail.com"
],
"bin": {
"ip2geo": "app/cli.js"
},
"main": "app/api.js",
"repository": {
"type": "git",
"url": "git+https://github.com/k03mad/ip2geo.git"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"dependencies": {
"@k03mad/request": "7.6.1",
"@k03mad/simple-log": "5.1.1",
"chalk": "5.4.1",
"debug": "4.4.0",
"is-ip": "5.0.1"
},
"devDependencies": {
"@k03mad/eslint-config": "28.2.0",
"eslint": "9.17.0",
"husky": "9.1.7",
"mocha": "11.0.1",
"npm-run-all": "4.1.5"
},
"scripts": {
"lint": "npm run lint:eslint",
"lint:eslint": "eslint ./ --cache",
"test": "rm -rfv ./.geoip && mocha tests",
"clean": "rm -rf ./node_modules .eslintcache || true",
"setup": "npm run clean && npm run setup:pnpm",
"setup:pnpm": "npm i pnpm -g && pnpm i",
"prepare": "husky || true"
}
}