-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
{
"name": "credential-status",
"version": "3.0.4",
"description": "credential status aggregator for did-jwt",
"type": "module",
"source": "src/index.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src",
"LICENSE"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.module.js"
}
},
"scripts": {
"build": "microbundle --compress=false",
"test": "jest",
"test:ci": "jest --coverage",
"dev": "tsc --watch",
"format": "prettier --write \"src/**/*.[jt]s\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
"prepublishOnly": "yarn test && yarn format && yarn lint",
"release": "semantic-release --debug"
},
"repository": "[email protected]:uport-project/credential-status.git",
"keywords": [
"Verifiable Credential",
"W3C",
"status check",
"revocation",
"credentialStatus",
"JWT"
],
"author": "Mircea Nistor <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/uport-project/credential-status/issues"
},
"homepage": "https://github.com/uport-project/credential-status#readme",
"devDependencies": {
"@babel/preset-typescript": "7.24.7",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.12",
"@types/node": "20.16.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"microbundle": "0.15.1",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"typescript": "5.5.4"
},
"dependencies": {
"did-jwt": "^8.0.0",
"did-resolver": "^4.1.0"
}
}