-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 992 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 992 Bytes
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": "enrichip",
"version": "1.0.0",
"description": "A TypeScript/JavaScript library to query IP addresses using the ipquery.io API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run build"
},
"keywords": [
"ip",
"ip-address",
"geolocation",
"ipquery",
"typescript",
"axios",
"javascript"
],
"author": "IPQuery <admin@ipquery.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ipqwery/ipapi-ts.git"
},
"homepage": "https://github.com/ipqwery/ipapi-ts",
"bugs": {
"url": "https://github.com/ipqwery/ipapi-ts/issues"
},
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}