forked from auth0-lab/mdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.01 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
74
75
76
77
78
79
80
81
{
"name": "@auth0/mdl",
"version": "1.5.0",
"description": "Parse and and validate MDOC CBOR encoded binaries according to ISO 18013-5.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --verbose",
"lint": "eslint ./src/**/*.ts",
"build": "rm -rf lib ; tsc",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0-lab/mdl.git"
},
"keywords": [
"auth0",
"mdl",
"iso-18013-5",
"iso-18013-7",
"m-doc",
"m-doc-cbor",
"m-doc-cbor-parser",
"m-doc-cbor-validator",
"m-doc-cbor-encoder",
"m-doc-cbor-decoder",
"m-doc-cbor-iso-18013-5",
"m-doc-cbor-iso-18013-5-parser",
"m-doc-cbor-iso-18013-5-validator",
"m-doc-cbor-iso-18013-5-encoder",
"m-doc-cbor-iso-18013-5-decoder"
],
"author": {
"name": "Auth0 Inc.",
"url": "https://auth0.com"
},
"contributors": [
"José Romaniello (https://x.com/jfroma)",
"Sebastian Iacomuzzi (https://x.com/sebasiaco)"
],
"files": [
"lib/**/*"
],
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"arraybuffer-equal": "^1.0.4",
"buffer-tag": "^1.0.2",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"husky": "^9.1.4",
"jest": "^29.6.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@panva/hkdf": "^1.1.1",
"@peculiar/x509": "^1.9.5",
"buffer": "^6.0.3",
"cbor-x": "^1.5.9",
"compare-versions": "^6.0.0",
"cose-kit": "^1.7.1",
"debug": "^4.3.4",
"jose": "^4.15.5",
"uncrypto": "^0.1.3"
},
"engines": {
"node": ">=16.0.0"
}
}