-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "ipinfo-express",
"version": "2.0.2",
"description": "Official Node.js Express client library for IPinfo",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ipinfo/node-express.git"
},
"keywords": [
"IPinfo",
"Express",
"Node.js"
],
"prepublish": "tsc",
"scripts": {
"build": "tsc",
"tsc": "tsc --pretty --watch",
"test": "jest",
"test --watch": "jest --watchAll"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ipinfo/node-express/issues"
},
"homepage": "https://ipinfo.io/",
"engines": {
"node": ">=10"
},
"dependencies": {
"node-ipinfo": "^3.4.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/lru-cache": "^7.10.10",
"@types/node": "^18.15.11",
"dotenv": "^8.2.0",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}