-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "dohjs",
"version": "0.3.3",
"description": "DNS over HTTPS lookups from web apps",
"main": "lib/index.js",
"dependencies": {
"argparse": "^1.0.10",
"base32-encode": "^1.1.1",
"browserify": "^16.5.0",
"dns-packet": "^5.2.1",
"glob-parent": "^5.1.2",
"ws": "^7.4.6"
},
"devDependencies": {
"jest": "^26.6.3",
"jsdoc-to-markdown": "^5.0.3",
"terser": "^4.6.3"
},
"scripts": {
"test": "./test.sh",
"start": "npx live-server",
"prestart": "npm run build",
"build": "npm run dohjs",
"prepare": "npm run build",
"docs": "jsdoc2md lib/index.js > docs/README.md",
"dohjs": "browserify lib/index.js --standalone doh -o dist/doh.js && npx terser dist/doh.js --compress --mangle --output=dist/doh.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/byu-imaal/dohjs.git"
},
"keywords": [
"DNS",
"DoH",
"DNS over HTTPS"
],
"author": "",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/byu-imaal/dohjs/issues"
},
"homepage": "https://github.com/byu-imaal/dohjs#readme",
"bin": {
"dohjs": "./bin/doh.js"
},
"files": [
"dist/",
"lib/",
"bin/",
"docs/",
"examples/",
"test.sh"
]
}