-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
75 lines (75 loc) · 2.05 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
{
"name": "did-jwt-vc",
"version": "4.0.4",
"description": "Create and verify W3C Verifiable Credentials and Presentations in JWT format",
"type": "module",
"source": "src/index.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist",
"src",
"LICENSE"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.module.js"
}
},
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:ci": "yarn test --coverage",
"build": "microbundle --compress=false",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
"prepublishOnly": "yarn test:ci && yarn format && yarn lint",
"release": "semantic-release --debug"
},
"author": "mi-xu",
"contributors": [
"Mircea Nistor <[email protected]>"
],
"license": "ISC",
"dependencies": {
"did-jwt": "^8.0.0",
"did-resolver": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/did-jwt-vc.git"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-typescript": "7.23.2",
"@noble/curves": "1.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/elliptic": "6.4.16",
"@types/faker": "6.6.9",
"@types/jest": "29.5.7",
"@types/node": "20.8.10",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"cross-env": "7.0.3",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-prettier": "5.0.1",
"ethr-did": "3.0.13",
"faker": "6.6.6",
"jest": "29.7.0",
"microbundle": "0.15.1",
"prettier": "3.0.3",
"semantic-release": "22.0.7",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18"
}
}