-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
55
{
"name": "ipdata",
"version": "2.2.4",
"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/thomasconner/ipdata-js-library.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.21",
"lru-cache": "^5.1.1",
"tslib": "^1.10.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/lodash": "^4.14.144",
"@types/lru-cache": "^5.1.0",
"@types/node": "^12.12.6",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"del-cli": "^3.0.0",
"dotenv-cli": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^4.6.3"
},
"files": [
"lib"
]
}