forked from Sphereon-Opensource/OID4VC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.97 KB
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
{
"name": "@sphereon/openid4vci-client",
"version": "0.3.5-unstable.0",
"description": "OpenID for Verifiable Credential Issuance (OpenID4VCI) client",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"author": "Sphereon",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.build.json",
"clean": "rimraf dist coverage",
"watch": "tsc -w",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"{lib,tests}/**/*.ts\" --write",
"fix:lint": "eslint . --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint . --ext .ts",
"test:prettier": "prettier \"{lib,tests}/**/*.ts\" --list-different",
"test:cov": "jest --ci --coverage && codecov",
"uninstall": "rimraf dist coverage yarn.lock package-lock.json node_modules"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@sphereon/ssi-types": "0.8.1-unstable.86",
"bs58": "^5.0.0",
"cross-fetch": "^3.1.5",
"debug": "^4.3.4",
"uint8arrays": "^3.1.1"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"codecov": "^3.8.3",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.1.2",
"jest-junit": "^14.0.1",
"jose": "^4.10.0",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "4.6.4"
},
"files": [
"dist/main"
],
"prettier": {
"singleQuote": true,
"printWidth": 150
},
"keywords": [
"Sphereon",
"Verifiable Credentials",
"OpenID",
"OpenID for Verifiable Credential Issuance",
"OAuth2",
"SSI",
"OpenID4VCI",
"OIDC4VCI",
"OID4VCI"
]
}