-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
52
53
54
{
"name": "ipinfo-express",
"version": "2.3.0",
"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"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"node-ipinfo": "^4.3.0"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/jest": "^30.0.0",
"@types/lru-cache": "^7.10.10",
"@types/node": "^18.19.121",
"dotenv": "^8.6.0",
"jest": "^30.0.5",
"prettier": "^2.8.8",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}