-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 3.19 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
{
"name": "did-siop",
"version": "2.0.7",
"description": "A library containing core functionality for DID based Self Issued OpenID Connect authentication. Contains both Relying Party and Provider components.",
"main": "dist/node/index.js",
"browser": "dist/browser/did-siop.min.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"node-build": "tsc --declarationDir ./dist/types",
"browser-build": "webpack --config webpack.config.js",
"publish-version": "npm run-script node-build && npm run-script browser-build && npm publish",
"prepare": "husky install",
"pretty": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,scss,css}\"",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,scss,css}": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RadicalLedger/did-siop-lib.git"
},
"keywords": [
"Self_Issued_OpenIDConnect_Provider",
"DID",
"SIOP",
"Self_Soverign_Identity",
"DID_SIOP",
"OpenID_SIOP",
"Identity_Wallet",
"OpenIDConnect"
],
"author": "fidenz-chim",
"license": "MIT",
"bugs": {
"url": "https://github.com/RadicalLedger/did-siop-lib/issues"
},
"homepage": "https://github.com/RadicalLedger/did-siop-lib#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/bs58": "^4.0.1",
"@types/ed2curve": "^0.2.2",
"@types/elliptic": "^6.4.12",
"@types/jest": "^28.1.6",
"@types/multibase": "^0.6.0",
"@types/multicodec": "^1.0.0",
"@types/node": "^18.7.2",
"@types/puppeteer": "^5.4.6",
"@types/query-string": "^6.3.0",
"babel-jest": "^28.1.3",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lint-staged": "^13.2.0",
"nock": "^12.0.3",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"puppeteer": "^15.3.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.7.4",
"uglify-js": "^3.9.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@digitalbazaar/did-method-key": "^3.0.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"axios": "^0.27.2",
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"core-js": "^3.23.3",
"did-resolver": "^3.2.0",
"ed2curve": "^0.3.0",
"elliptic": "^6.5.2",
"ethereum-checksum-address": "0.0.5",
"ethereum-public-key-to-address": "0.0.2",
"ethr-did-resolver": "^5.0.4",
"node-rsa": "^1.0.8",
"query-string": "^6.12.1",
"regenerator-runtime": "^0.13.9"
}
}