-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "dohdec-monorepo",
"version": "6.0.4",
"description": "DNS over HTTPS and DNS over TLS",
"private": true,
"type": "module",
"workspaces": [
"./pkg/*"
],
"scripts": {
"lint": "eslint .",
"test": "c8 ava",
"release": "npm version patch && git push --follow-tags && npm publish",
"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",
"all:link": "pnpm run -r link",
"clean": "rm -rf node_modules coverage pkg/*/node_modules pkg/*/coverage pkg/*/types",
"version": "ver=`npm pkg get version | sed -E 's/\"*([^\"]+)\"*/\\1/'` && npm pkg set -ws version=$ver && npm pkg set dependencies.dohdec=$ver --workspace dohdec-cli && pnpm run -r version && git add pkg/*/package.json && git add pkg/*/lib/pkg.js"
},
"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": "^4.1.6",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^9.10.0",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-node": "^11.1.0",
"mock-dns-server": "0.0.3",
"package-extract": "2.0.2",
"typedoc": "0.26.7"
},
"packageManager": "pnpm@9.10.0",
"engines": {
"node": ">=18"
}
}