generated from ministero-salute/it-dgc-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
65 lines (65 loc) · 1.43 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
{
"name": "dcc-utils",
"version": "0.5.0",
"description": "DCC utils for NodeJS",
"keywords": [
"health",
"covid19",
"utils",
"rules",
"validation",
"dcc"
],
"homepage": "https://github.com/ministero-salute/dcc-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/ministero-salute/dcc-utils.git"
},
"bugs": {
"url": "https://github.com/ministero-salute/dcc-utils/issues"
},
"main": "src/index.js",
"files": [
"src",
"types"
],
"types": "types/index.d.ts",
"scripts": {
"test": "eslint src test && jest",
"test:types": "npx tsd",
"build": "echo 'TODO'"
},
"author": "Ministero della Salute",
"contributors": [
"Andrea Stagi <[email protected]>"
],
"license": "AGPL-3.0",
"dependencies": {
"base45": "^2.0.1",
"cbor": "^7.0.6",
"certlogic-js": "^1.1.2",
"cose-js": "^0.7.0",
"cosette": "^0.6.5",
"jimp": "^0.16.1",
"jsqr": "^1.4.0",
"jsrsasign": "^10.4.1",
"jsrsasign-util": "^1.0.5"
},
"devDependencies": {
"@peculiar/x509": "^1.4.1",
"codecov": "^3.8.3",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6",
"node-fetch": "^2.6.7",
"tsd": "^0.17.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"./src/*.js"
]
}
}