-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
{
"name": "ipdata",
"version": "2.2.2",
"description": "JavaScript library to gather information for an ip using https://ipdata.co.",
"main": "./lib/ipdata.js",
"scripts": {
"prebuild": "del lib",
"build": "tsc",
"lint": "eslint --fix \"src/**\"",
"test": "dotenv jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Twaites/ipdata-node.git"
},
"author": "Thomas Conner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomasconner/ipdata-js-library/issues"
},
"homepage": "https://github.com/thomasconner/ipdata-js-library#readme",
"dependencies": {
"axios": "^0.21.1",
"is-ip": "^3.1.0",
"lodash": "^4.17.20",
"lru-cache": "^6.0.0",
"tslib": "^2.1.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.167",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.21",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"del-cli": "^3.0.1",
"dotenv-cli": "^4.0.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"lib"
]
}