forked from lsongdev/node-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.77 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
55
56
{
"name": "dns2",
"version": "2.2.1",
"description": "A DNS Server and Client Implementation in Pure JavaScript with no dependencies.",
"main": "index.js",
"types": "ts/index.d.ts",
"files": [
"lib",
"client",
"server",
"packet.js",
"example",
"ts"
],
"scripts": {
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"example-server-udp": "node example/server/udp.js",
"example-server-tcp": "node example/server/tcp.js",
"example-server-doh": "node example/server/doh.js",
"example-client-doh": "node example/client/doh.js",
"example-client-udp": "node example/client/udp.js",
"example-client-tcp": "node example/client/tcp.js",
"example-client-google": "node example/client/google.js",
"example-client-udp-subnet": "node example/client/udp-subnet.js",
"benchmark": "node benchmark/udp.js"
},
"keywords": [
"dns"
],
"author": "Liu Song <song940@gmail.com>",
"contributors": [
"Andris Reinman <andris.reinman@gmail.com>",
"Eviltik <eviltik@gmail.com>",
"Martin Heidegger <martin.heidegger@gmail.com>",
"Matt Simerson <matt@tnpi.net>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lsongdev/node-dns.git"
},
"bugs": {
"url": "https://github.com/lsongdev/node-dns/issues"
},
"homepage": "https://github.com/lsongdev/node-dns#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.4.0",
"globals": "^17.6.0"
}
}