-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "covid-green-dcc-file-decoder",
"version": "0.1.4",
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.ts",
"typecheck": "tsc"
},
"dependencies": {
"canvas": "^2.9.1",
"jimp": "^0.16.1",
"jsqr": "^1.4.0",
"pdfjs-dist": "^2.9.359"
},
"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-file-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-file-decoder/issues"
},
"homepage": "https://github.com/covidgreen/covid-green-dcc-file-decoder#readme"
}