forked from kozakdenys/qr-code-styling
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
75 lines (75 loc) · 1.83 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
69
70
71
72
73
74
75
{
"name": "styled-qr-code",
"version": "1.0.0",
"description": "Add a style and an image to your QR code",
"main": "lib/styled-qr-code.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"qrcode-generator": "^1.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"canvas": "^2.9.3",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build": "webpack --mode=production --config webpack.config.build.js",
"build:dev": "webpack --mode=development --config webpack.config.build.js",
"test": "jest",
"start": "webpack serve --open --config webpack.config.dev-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KilianB/styled-qr-code.git"
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"js",
"qrjs",
"qrstyling",
"styling",
"qrbranding",
"branding",
"qrimage",
"image",
"qrlogo",
"logo",
"design"
],
"author": {
"name": "Kilian Brachtendorf",
"email": "[email protected]"
},
"contributors": [
{
"name": "Denys Kozak",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KilianB/styled-qr-code/issues"
},
"homepage": "https://github.com/KilianB/styled-qr-code"
}