-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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
49
50
51
{
"name": "ipdata",
"version": "3.0.0",
"description": "JavaScript library to gather information for an ip using https://ipdata.co.",
"main": "./lib/ipdata.js",
"types": "./lib/ipdata.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "del lib",
"build": "tsc",
"lint": "eslint --fix \"src/**\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipdata/node.git"
},
"author": "Thomas Conner <thomas.conner@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipdata/node/issues"
},
"homepage": "https://github.com/ipdata/node#readme",
"dependencies": {
"lru-cache": "^11.2.6",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"del-cli": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"files": [
"lib"
]
}