-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "@ew-did-registry/jwt",
"version": "0.9.0",
"publishConfig": {
"access": "public"
},
"description": "The package manages JWTs",
"main": "./dist/index.js",
"browser": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "../../node_modules/.bin/mocha -r ts-node/register test/**/*.test.ts",
"compile": "webpack --config ../../webpack.config.js",
"lint": "../../node_modules/.bin/eslint src/**/*.ts",
"fix": "../../node_modules/.bin/eslint src/**/*.ts --fix"
},
"keywords": [
"Energy",
"EnergyWeb",
"EW",
"JWT",
"DID JWT"
],
"author": {
"name": "EnergyWeb",
"url": "https://www.energyweb.org/"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@ew-did-registry/keys": "0.9.0",
"base64url": "^3.0.1",
"ec-key": "0.0.4",
"ethereumjs-util": "^7.0.5",
"ethers": "^5.7.2",
"jsonwebtoken": "^9.0.0",
"promise.allsettled": "^1.0.6"
},
"devDependencies": {
"@types/jsonwebtoken": "8.5.9",
"@types/mocha": "^9.1.1",
"@types/promise.allsettled": "^1.0.3",
"node-polyfill-webpack-plugin": "^1.1.4",
"ts-loader": "^9.2.6",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}