-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 959 Bytes
/
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
{
"name": "giropay",
"version": "1.0.0",
"description": "Generate Giropay QR-Codes",
"main": "src/main.ts",
"scripts": {
"build": "tsc --project './tsconfig.json'",
"dev": "node --max-http-header-size 200000 -r ts-node/register src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowluap/giropay.git"
},
"keywords": [
"giropay",
"qr",
"qr-code",
"banking",
"invoice"
],
"author": "flowluap",
"license": "ISC",
"bugs": {
"url": "https://github.com/flowluap/giropay/issues"
},
"homepage": "https://github.com/flowluap/giropay#readme",
"dependencies": {
"@types/qrcode": "^1.4.2",
"express": "^4.17.2",
"jimp": "^0.16.1",
"qrcode": "^1.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.3",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}