-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.31 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
71
72
73
{
"name": "@relaycorp/veraid",
"version": "1.0.0",
"author": {
"email": "[email protected]",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"description": "DNS without the Internet",
"type": "module",
"typings": "build/lib/index.d.ts",
"main": "build/lib/index.js",
"repository": "https://github.com/relaycorp/veraid-js",
"homepage": "https://docs.relaycorp.tech/veraid-js/",
"license": "MIT",
"keywords": [
"VeraId",
"Vera"
],
"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.9"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@relaycorp/eslint-config": "^1.1.131",
"@relaycorp/shared-config": "^1.14.1",
"@types/jest": "^29.5.11",
"@typescript-eslint/parser": "^5.59.7",
"del-cli": "^5.1.0",
"eslint": "^8.55.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": "^5.1.6"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"dependencies": {
"@peculiar/asn1-cms": "^2.3.8",
"@peculiar/asn1-schema": "^2.3.3",
"@peculiar/asn1-x509": "^2.3.4",
"@peculiar/webcrypto": "^1.4.3",
"@relaycorp/dnssec": "^1.11.5",
"asn1js": "^3.0.5",
"date-fns": "^2.30.0",
"dohdec": "https://gitpkg.now.sh/hildjj/dohdec/pkg/dohdec?acd49694a83825a461bdff55e4a4a63ca7a4bbef",
"pkijs": "^3.0.15",
"webcrypto-core": "^1.7.7"
}
}