forked from relaycorp/dnssec-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@relaycorp/dnssec",
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"description": "Resolver-agnostic DNSSEC library",
"type": "module",
"typings": "build/lib/index.d.ts",
"main": "build/lib/index.js",
"repository": "https://github.com/relaycorp/dnssec-js",
"homepage": "https://docs.relaycorp.tech/dnssec-js/",
"license": "MIT",
"keywords": [
"dnssec",
"rfc4033",
"rfc4034",
"rfc4035"
],
"scripts": {
"build": "run-s clean tsc",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:eslint": "eslint -c .eslintrc.cjs --fix src",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "eslint -c .eslintrc.cjs src",
"static-checks:prettier": "prettier \"src/**/*.ts\" --list-different",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:integration": "run-s build test:integration:jest",
"test:integration:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest-integration-transpiled.config.mjs",
"tsc": "tsc",
"doc-api": "typedoc src/index.ts --out build/docs",
"clean": "del-cli build test"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@relaycorp/eslint-config": "^1.1.63",
"@relaycorp/shared-config": "^1.14.1",
"@types/jest": "^29.5.11",
"@typescript-eslint/parser": "^5.61.0",
"del-cli": "^5.1.0",
"dohdec": "^6.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-date-mock": "^1.0.8",
"jest-extended": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@leichtgewicht/dns-packet": "^6.0.3",
"@peculiar/asn1-schema": "^2.3.8",
"bigint-buffer": "^1.1.5",
"date-fns": "^2.30.0"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"publishConfig": {
"access": "public",
"tag": "latest"
}
}