-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@dnspect/dns-ts",
"version": "0.3.2",
"description": "DNS library in TypeScript",
"author": "Minghang Chen <[email protected]> (https://minghang.dev)",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./buffer": "./dist/buffer.js",
"./edns": "./dist/edns/index.js",
"./records": "./dist/records/index.js",
"./records/dnssec": "./dist/records/dnssec/index.js",
"./rr": "./dist/rr.js",
"./scan": "./dist/scan.js"
},
"typesVersions": {
"*": {
"buffer": [
"./dist/buffer.d.ts"
],
"edns": [
"./dist/edns/index.d.ts"
],
"records": [
"./dist/records/index.d.ts"
],
"records/dnssec": [
"./dist/records/dnssec/index.d.ts"
],
"rr": [
"./dist/rr.d.ts"
],
"scan": [
"./dist/scan.d.ts"
]
}
},
"dependencies": {
"@dnspect/ip-address-ts": "0.2.1",
"base64-js": "1"
},
"devDependencies": {
"@types/chai": "4",
"@types/mocha": "10",
"@types/node": "18",
"@typescript-eslint/eslint-plugin": "5",
"chai": "4",
"chai-bytes": "0.1.2",
"eslint": "8",
"mocha": "10",
"ts-node": "10",
"tsc-alias": "1.8",
"typescript": "4.9"
},
"scripts": {
"test": "mocha",
"build": "tsc -d && tsc-alias -f",
"lint": "eslint src/**/**.{ts,tsx}",
"lint:fix": "eslint src/**/**.{ts,tsx} --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnspect/dns-ts.git"
},
"keywords": [
"dns",
"domain"
],
"bugs": {
"url": "https://github.com/dnspect/dns-ts/issues"
},
"homepage": "https://github.com/dnspect/dns-ts"
}