-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.55 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
{
"name": "@interop/did-web-resolver",
"description": "A did:web method Decentralized Identifier (DID) resolver for the did-io library.",
"version": "5.0.0",
"author": {
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/interop-alliance/did-web-driver"
},
"homepage": "https://github.com/interop-alliance/did-web-driver",
"bugs": "https://github.com/interop-alliance/did-web-driver/issues",
"scripts": {
"build": "npm run clear && tsc -d && tsc -p tsconfig.esm.json",
"clear": "rimraf dist/*",
"lint": "ts-standard --fix --project tsconfig.spec.json",
"prepare": "npm run build",
"rebuild": "npm run clear && npm run build",
"test": "npm run lint && npm run test-node",
"test-node": "cross-env NODE_ENV=test TS_NODE_PROJECT=tsconfig.spec.json TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --project tsconfig.spec.json 'test/*.ts'"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"main": "dist/src/index.js",
"module": "dist/esm/index.js",
"browser": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"dependencies": {
"@digitalcredentials/http-client": "^5.0.1",
"@digitalcredentials/bnid": "^3.0.1",
"@digitalcredentials/did-io": "^1.0.2",
"did-context": "^3.1.1",
"ed25519-signature-2020-context": "^1.1.0",
"whatwg-url": "^14.0.0",
"x25519-key-agreement-2020-context": "^1.0.0"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^6.1.6"
},
"devDependencies": {
"@digitalcredentials/ed25519-verification-key-2020": "^3.2.2",
"@digitalcredentials/x25519-key-agreement-key-2020": "^2.0.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"crypto-ld": "^6.0.0",
"eslint": "^8.46.0",
"mocha": "^10.2.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "5.2.2"
},
"publishConfig": {
"access": "public"
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"spec": "test/**/*.ts"
},
"ts-standard": {
"ignore": [
"dist"
],
"globals": [
"it",
"describe",
"beforeEach"
]
},
"engines": {
"node": ">=18.0"
},
"standard": {
"globals": [
"it"
]
}
}