forked from decentralized-identity/did-jwt-vc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
{
"name": "did-jwt-vc",
"version": "2.1.10",
"description": "Create and verify W3C Verifiable Credentials and Presentations in JWT format",
"source": "src/index.ts",
"main": "./lib/index.js",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"test": "jest",
"test:ci": "jest --coverage && codecov",
"build:js": "microbundle",
"build": "yarn lint && yarn build:js && yarn test",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
"prepare": "yarn build",
"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": "^6.1.0",
"did-resolver": "^3.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/did-jwt-vc.git"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**",
"!**/__tests__/**"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.[jt]s"
]
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.8",
"@babel/preset-typescript": "7.16.7",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/elliptic": "6.4.14",
"@types/faker": "6.6.8",
"@types/jest": "27.4.0",
"@types/node": "16.11.19",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"codecov": "3.8.3",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "26.1.0",
"eslint-plugin-prettier": "4.0.0",
"ethr-did": "2.1.5",
"faker": "6.6.6",
"jest": "27.4.7",
"microbundle": "0.14.2",
"prettier": "2.5.1",
"semantic-release": "19.0.2",
"typescript": "4.5.4"
},
"engines": {
"node": ">=14"
}
}