-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"name": "@did-connect/relay-adapter-express",
"description": "Helper function to setup DID authentication support on a node.js web server",
"version": "2.2.7",
"author": {
"name": "wangshijun",
"email": "[email protected]",
"url": "https://github.com/wangshijun"
},
"contributors": [
"wangshijun <[email protected]> (https://github.com/wangshijun)"
],
"bugs": {
"url": "https://github.com/ArcBlock/did-connect/issues",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@did-connect/authenticator": "2.2.7",
"@did-connect/handler": "2.2.7",
"@did-connect/storage": "2.2.7",
"@did-connect/types": "2.2.7",
"@types/express": "^4.17.14",
"express": "^4.18.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@arcblock/eslint-config-ts": "^0.3.3",
"@did-connect/storage-memory": "2.2.7",
"axios": "^1.7.9",
"eslint": "^8.26.0",
"jest": "^28.1.3",
"nanoid": "^3.3.4",
"ts-jest": "^28.0.8",
"typescript": "^4.8.4",
"url-join": "^4.0.1"
},
"homepage": "https://github.com/ArcBlock/did-connect",
"keywords": [
"did",
"web3"
],
"license": "Apache-2.0",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/ArcBlock/did-connect"
},
"scripts": {
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"prebuild": "npm run clean",
"build": "tsc",
"watch": "tsc -b --watch",
"check": "tsc --noEmit",
"clean": "rm -rf ./lib",
"test": "jest --forceExit",
"coverage": "npm run test -- --coverage"
},
"resolutions": {},
"gitHead": "87990c8b5e215107fc587c1ced0d6b3e2cd2483e"
}