forked from ensdomains/dnsprovejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "@ensdomains/dnsprovejs",
"version": "0.5.0",
"description": "A library to generate chains of trust proving DNS records via DNSSEC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@noble/hashes": "^1.3.2",
"dns-packet": "^5.6.1",
"typescript-logging": "^1.0.1"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.8",
"bun-types": "^1.0.7",
"eslint": "^8.52.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"test": "bun test tests",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ensdomains/dnsprovejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ensdomains/dnsprovejs/issues"
},
"homepage": "https://github.com/ensdomains/dnsprovejs#readme",
"engines": {
"node": ">=16.8"
}
}