-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
{
"name": "dohdec-monorepo",
"version": "8.0.0",
"description": "DNS over HTTPS and DNS over TLS",
"private": true,
"type": "module",
"workspaces": [
"./pkg/*"
],
"scripts": {
"lint": "eslint .",
"test": "c8 ava",
"preall:check": "npm run lint && npm run test && npm run all:types && npm run all:docs",
"all:check": "pnpm run -r --stream check",
"all:docs": "pnpm run -r docs",
"all:types": "pnpm run -C pkg/dohdec types && pnpm run -C pkg/dohdec-cli types",
"all:install": "pnpm i -r",
"clean": "rm -rf node_modules coverage pkg/*/node_modules pkg/*/coverage pkg/*/types",
"version": "monopub version && pnpm run -r --if-present version && pnpm i -r && git add pnpm-lock.yaml"
},
"keywords": [
"doh",
"dns-over-https",
"dns-over-tls",
"dns",
"dnssec",
"rfc7858",
"rfc8484"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hildjj/dohdec.git"
},
"devDependencies": {
"@cto.af/eslint-config": "^6.2.5",
"@cto.af/monopub": "1.2.4",
"@eslint/markdown": "^7.5.1",
"ava": "^7.0.0",
"eslint": "^10.1.0",
"eslint-plugin-ava": "^16.0.0",
"eslint-plugin-jsdoc": "^62.8.0",
"mock-dns-server": "^1.0.3",
"package-extract": "^3.1.6",
"superc8": "^12.3.1",
"typedoc": "^0.28.17"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.3"
}
}