forked from dcoffey-zengenti/node-rdap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
56
{
"name": "node-rdap",
"version": "0.4.1",
"type": "module",
"main": "./dist/tsc/client.js",
"types": "./dist/tsc/client.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/dcoffey-zengenti/node-rdap"
},
"author": "Derry coffey <[email protected]>",
"license": "MIT",
"keywords": [
"rdap",
"registration data access protocol",
"domain lookup",
"ip address lookup",
"autnum lookup",
"dns lookup"
],
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rimraf dist build package",
"ts-node": "ts-node",
"cli": "node dist/tsc/cli.js",
"build": "tsc -p tsconfig.json",
"build:cli": "yarn build && yarn cli",
"build-all": "yarn clean && yarn build"
},
"devDependencies": {
"@types/jest": "29.5.11",
"@types/node": "20.10.4",
"@types/punycode": "2.1.3",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"jest": "29.7.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.3.3"
},
"dependencies": {
"commander": "11.1.0",
"ip-matching": "^2.1.2",
"node-cache": "^5.1.2",
"punycode": "2.3.1"
},
"engines": {
"node": ">=18.0.0"
}
}