-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
43 lines (43 loc) · 1.36 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": "dns2",
"version": "2.1.0",
"description": "A DNS Server and Client Implementation in Pure JavaScript with no dependencies.",
"main": "index.js",
"scripts": {
"test": "node test",
"lint": "eslint .",
"fix": "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"
},
"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>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/song940/node-dns.git"
},
"bugs": {
"url": "https://github.com/song940/node-dns/issues"
},
"homepage": "https://github.com/song940/node-dns#readme",
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
}
}