-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "dcc-decoder",
"version": "0.6.3",
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.ts",
"typecheck": "tsc"
},
"dependencies": {
"base45-js": "github:covidgreen/base45-js",
"cbor": "^3.0.3",
"certlogic-js": "^0.9.2",
"cose-js": "^0.6.0",
"node-fetch": "^2.6.1",
"node-rsa": "^1.1.1",
"pako": "^1.0.11",
"tiny-json-validator": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-jest": "^27.0.6",
"babel-plugin-transform-runtime": "^6.23.0",
"cli-table": "^0.3.6",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.2.0",
"typescript": "<4.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/covidgreen/covid-green-dcc-decoder.git"
},
"keywords": [
"DCC",
"EU Covid Certs",
"Digital Covid Certs"
],
"prepublish": "tsc",
"author": "NearForm",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/covidgreen/covid-green-dcc-decoder/issues"
},
"homepage": "https://github.com/covidgreen/covid-green-dcc-decoder#readme"
}