-
-
Notifications
You must be signed in to change notification settings - Fork 491
/
package.json
77 lines (77 loc) · 2.23 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
76
77
{
"name": "qr-code-styling",
"version": "1.8.4",
"description": "Add a style and an image to your QR code",
"main": "lib/qr-code-styling.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"qrcode-generator": "^1.4.4"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"canvas": "^2.11.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-webpack-plugin": "^4.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-fixed-jsdom": "^0.0.4",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"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",
"ci:versionup:patch": "npm version patch --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:minor": "npm version minor --no-git-tag-version --yes && npm run commit-version",
"ci:versionup:major": "npm version major --no-git-tag-version --yes && npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): v`node -p 'require(\"./package.json\").version'`\"",
"ci:release": "npm publish --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kozakdenys/qr-code-styling.git"
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"js",
"qrjs",
"qrstyling",
"styling",
"qrbranding",
"branding",
"qrimage",
"image",
"qrlogo",
"logo",
"design"
],
"author": "Denys Kozak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kozakdenys/qr-code-styling/issues"
},
"homepage": "https://qr-code-styling.com"
}