This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 1.69 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
{
"name": "cwa-event-qr-code",
"version": "1.3.0",
"description": "Utility to generate QR codes for Event Registration (incl. from the CLI)",
"main": "lib/index.js",
"bin": {
"cwa-event-qr-code": "bin/cli"
},
"scripts": {
"fix": "standard bin/cli 'lib/**/*.js' 'test/**/*.js' --fix --verbose | snazzy",
"lint": "standard bin/cli 'lib/**/*.js' 'test/**/*.js' --verbose | snazzy",
"tpn": "generate-license-file --input package.json --output THIRD-PARTY-NOTICES",
"prepare": "husky install",
"test": "npm run lint && jest",
"watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corona-warn-app/cwa-event-qr-code.git"
},
"keywords": [
"cwa",
"corona-warn-app",
"event registration"
],
"author": "SAP SE",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/corona-warn-app/cwa-event-qr-code/issues"
},
"homepage": "https://github.com/corona-warn-app/cwa-event-qr-code#readme",
"dependencies": {
"@fast-csv/parse": "4.3.6",
"pdf-lib": "1.16.0",
"protobufjs": "6.10.3",
"qrcode": "1.4.4",
"yargs": "16.2.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"file-type": "16.5.4",
"generate-license-file": "1.1.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"snazzy": "9.0.0",
"standard": "16.0.3"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.js": [
"standard --fix"
],
"package.json": [
"npm run tpn",
"git add THIRD-PARTY-NOTICES"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}