This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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": "@mattrglobal/cose",
"version": "2.1.0",
"author": "MATTR",
"license": "SEE LICENCE IN https://learn.mattr.global/docs/terms/sdk-licence-verifier-single-format-cwt-cose/",
"private": false,
"description": "An implementation of RFC8152",
"homepage": "https://github.com/mattrglobal/cose",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/mattrglobal/cose",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"scripts": {
"build": "tsc --pretty",
"format": "prettier --write \"**/*.ts\" \"**/*.md\" \"!**/lib/**\"",
"lint": "eslint . --ext .ts --color --format=table",
"lint:fix": "yarn lint --fix",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@stablelib/hex": "1.0.1",
"@types/jest": "28.1.1",
"@types/node": "17.0.42",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"conventional-changelog": "3.1.25",
"conventional-changelog-cli": "2.2.2",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-formatter-table": "7.32.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"jest": "28.1.1",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"text-encoding": "0.7.0",
"ts-jest": "28.0.4",
"ts-node": "10.8.1",
"typescript": "4.7.3"
},
"dependencies": {
"@cto.af/textdecoder": "0.0.0",
"@peculiar/webcrypto": "1.4.0",
"@stablelib/base64": "1.0.1",
"bignumber.js": "9.0.2",
"buffer": "5.4.3",
"cbor": "7.0.4",
"cbor-web": "7.0.4",
"util": "0.12.4",
"zod": "3.17.3"
},
"react-native": {
"./lib/crypto/crypto.js": "./lib/crypto/crypto-rn.js"
},
"browser": {
"./lib/cbor/cbor.js": "./lib/cbor/cbor-browser.js",
"./lib/crypto/crypto.js": "./lib/crypto/crypto-browser.js"
}
}