-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1009 Bytes
/
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
{
"name": "@pathcheck/shc-sdk",
"version": "0.0.11",
"description": "Verifiable QR SDK for Smart Health Cards",
"scripts": {
"test": "mocha",
"webpack": "webpack --config webpack.config.js",
"keys": "scripts/generate-key-pair.sh",
"certs": "scripts/generate-cert-chain.sh"
},
"author": "Vitor Pamplona",
"license": "GPL-3.0-only",
"files": [
"lib/**/*.js",
"scripts/**/*.js",
"scripts/**/*.sh"
],
"repository": {
"type": "git",
"url": "https://github.com/Path-Check/shc-sdk.js"
},
"bugs": {
"url": "https://github.com/Path-Check/shc-sdk.js/issues"
},
"main": "lib/index.js",
"module": "lib/main.js",
"react-native": "lib/main.js",
"dependencies": {
"base64url": "^3.0.1",
"cross-fetch": "^3.1.4",
"esm": "^3.2.25",
"node-jose": "^2.0.0",
"pako": "^2.0.3"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"process": "^0.11.10",
"webpack": "^4.44.1",
"webpack-cli": "^4.6.0"
}
}