-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.96 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
{
"name": "@sphereon/wellknown-dids-client",
"version": "0.1.4-unstable.0",
"description": "Well-known DID client allows to create and verify DID Domain configuration resources",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p tsconfig.main.json",
"test": "run-s build test:* cov",
"test:lint": "eslint . --ext .ts",
"test:prettier": "prettier \"{src,test}/**/*.ts\" --list-different",
"test:unit": "jest",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"{src,test}/**/*.ts\" --write",
"fix:lint": "eslint . --ext .ts --fix",
"cov": "jest --coverage"
},
"files": [
"/dist"
],
"homepage": "https://sphereon.com",
"repository": {
"url": "https://github.com/Sphereon-Opensource/wellknown-dids-client.git"
},
"keywords": [
"DID",
"Well-known DID",
"Domain Linkage",
"DID Configuration Resource"
],
"dependencies": {
"@sphereon/ssi-types": "^0.9.0",
"cross-fetch": "^3.1.5",
"jwt-decode": "^3.1.2"
},
"devDependencies": {
"@digitalcredentials/ed25519-signature-2020": "^3.0.2",
"@digitalcredentials/ed25519-verification-key-2020": "^3.2.2",
"@digitalcredentials/jsonld-signatures": "^9.3.1",
"@digitalcredentials/vc": "^4.1.1",
"did-resolver": "~3.1.5",
"typescript": "4.6.4",
"ts-node": "^10.9.1",
"@types/node": "^14.18.23",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"@types/jest": "^28.1.6",
"ts-jest": "^28.0.7",
"jest": "^28.1.3",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1"
},
"prettier": {
"singleQuote": true,
"printWidth": 150
},
"resolutions": {
"isomorphic-webcrypto": "npm:@sphereon/isomorphic-webcrypto@^2.4.0-unstable.1"
}
}