forked from amitpadmani-awts/did-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "did-jwt",
"version": "7.2.5",
"description": "Library for Signing and Verifying JWTs that use DIDs as issuers and JWEs that use DIDs as recipients",
"type": "module",
"source": "src/index.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist",
"src",
"LICENSE"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.module.js"
}
},
"browser": "./dist/did-jwt.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:ci": "yarn test --coverage",
"build:js": "microbundle --compress=false",
"build:browser": "webpack --config webpack.config.cjs",
"build": "yarn build:js && yarn build:browser",
"clean": "rimraf lib dist",
"build:docs": "echo 'PLEASE UPDATE REFERENCE DOCS MANUALLY'",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
"prepublishOnly": "yarn test:ci && yarn format && yarn lint",
"release": "semantic-release --debug"
},
"author": "Pelle Braendgaard",
"contributors": [
"Mircea Nistor <mircea.nistor@mesh.xyz>",
"Oliver Terbu",
"Joel Thorstensson <oed@3box.io>",
"Jack Tanner <jack+public@tonomy.foundation>",
"Rebal Alhaqash <rebal@tonomy.foundation>"
],
"repository": {
"type": "git",
"url": "git@github.com:decentralized-identity/did-jwt.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-typescript": "7.21.4",
"@ethersproject/address": "5.7.0",
"@greymass/eosio": "^0.6.9",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tonomy/antelope-did": "^0.1.5",
"@types/jest": "29.5.0",
"@types/jsonwebtoken": "9.0.1",
"@types/jwk-to-pem": "2.0.1",
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"eslint": "8.37.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.5.0",
"jsontokens": "4.0.1",
"jsonwebtoken": "9.0.0",
"jwk-to-pem": "2.0.5",
"microbundle": "0.15.1",
"mockdate": "3.0.5",
"prettier": "3.0.1",
"regenerator-runtime": "0.13.11",
"rimraf": "^5.0.0",
"semantic-release": "21.0.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tweetnacl": "1.0.3",
"typescript": "5.0.3",
"webpack": "5.77.0",
"webpack-cli": "5.0.1"
},
"dependencies": {
"@noble/curves": "^1.0.0",
"@noble/hashes": "^1.3.0",
"@stablelib/xchacha20poly1305": "^1.0.1",
"bech32": "^2.0.0",
"canonicalize": "^2.0.0",
"did-resolver": "^4.1.0",
"multiformats": "^12.0.0",
"uint8arrays": "^4.0.3"
},
"eslintIgnore": [
"*.test.ts"
]
}