-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
{
"name": "verificac19-sdk",
"version": "1.2.1",
"description": "VerificaC19 SDK for Node.js",
"dependencies": {
"axios": "^0.24.0",
"dcc-utils": "^0.4.0",
"mongoose": "^6.1.6",
"dotenv": "^11.0.0"
},
"devDependencies": {
"better-sqlite3": "^7.5.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-match": "^1.1.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",
"lowdb": "^1.0.0",
"mocha": "^9.1.3",
"mockdate": "^3.0.5",
"nock": "^13.2.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0"
},
"keywords": [
"health",
"covid19",
"utils",
"rules",
"validation",
"dcc",
"sdk",
"node"
],
"main": "src/index.js",
"files": [
"src",
"types"
],
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint src test examples",
"test": "nyc mocha -t 200000 --file test/global.js test/",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/italia/verificac19-sdk.git"
},
"author": "Andrea Stagi",
"license": "MIT",
"bugs": {
"url": "https://github.com/italia/verificac19-sdk/issues"
},
"homepage": "https://github.com/italia/verificac19-sdk#readme",
"nyc": {
"include": "src"
}
}