forked from decentralized-identity/did-jwt-vc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.2 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
79
80
81
82
83
{
"name": "did-jwt-rsa-vc",
"version": "1.0.0",
"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",
"release": "semantic-release --debug"
},
"author": "mi-xu",
"contributors": [
"Mircea Nistor <mircea.nistor@mesh.xyz>",
"Rogelio Morrell"
],
"license": "ISC",
"dependencies": {
"dag-jose-utils": "^1.0.0",
"did-jwt": "^5.6.1",
"did-jwt-rsa": "^0.1.9",
"did-resolver": "^3.1.0",
"dotenv": "^10.0.0",
"jsrsasign": "^10.3.0",
"jsrsasign-util": "^1.0.5",
"rpc-utils": "^0.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Electronic-Signatures-Industries/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.14.6",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "7.14.5",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/faker": "5.5.7",
"@types/jest": "26.0.24",
"@types/node": "15.12.4",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"codecov": "3.8.2",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"ethr-did": "2.1.4",
"faker": "5.5.3",
"jest": "27.0.6",
"microbundle": "^0.13.3",
"prettier": "2.3.2",
"semantic-release": "17.4.4",
"typescript": "4.3.5"
},
"engines": {
"node": ">=14"
}
}