-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 1.93 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
78
79
80
81
82
83
84
85
86
{
"name": "@chillerlan/qrcode",
"version": "1.0.1",
"description": "A QR Code generator - ported from php-qrcode (https://github.com/chillerlan/php-qrcode)",
"license": "MIT",
"homepage": "https://github.com/chillerlan/js-qrcode",
"keywords": [
"qr code",
"qrcode",
"qr",
"qrcode-generator",
"jsqrcode",
"svg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chillerlan/js-qrcode.git"
},
"authors": [
{
"name": "Kazuhiko Arase",
"homepage": "https://github.com/kazuhikoarase/qrcode-generator"
},
{
"name": "Smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"contributors": [
{
"name": "Contributors",
"homepage": "https://github.com/chillerlan/js-qrcode/graphs/contributors"
},
{
"name": "ZXing Authors",
"homepage": "https://github.com/zxing/zxing"
}
],
"bugs": {
"url": "https://github.com/chillerlan/js-qrcode/issues"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/codemasher"
}
],
"type": "module",
"main": "lib/main.cjs",
"browser": "./lib/browser.js",
"files": [
"dist/*",
"lib/*",
"src/*",
"LICENSE",
"README.md"
],
"dependencies": {},
"devDependencies": {
"@babel/eslint-parser": "~7.24.6",
"@babel/preset-env": "~7.24.6",
"@istanbuljs/nyc-config-babel": "~3.0.0",
"@rollup/plugin-babel": "~6.0.4",
"@rollup/plugin-terser": "~0.4.4",
"c8": "~8.0.1",
"chai": "~5.1.1",
"core-js": "~3.37.1",
"eslint": "~9.4.0",
"jsdoc": "~4.0.3",
"mocha": "~10.4.0",
"node": "~22.2.0",
"nyc": "~15.1.0",
"rollup": "~4.18.0",
"util": "~0.12.5"
},
"scripts": {
"lint": "eslint ./src ./test",
"build": "rollup -c rollup.config.dist.js",
"build-src": "rollup -c rollup.config.src.js",
"test": "mocha",
"test-with-coverage": "c8 mocha",
"jsdoc": "jsdoc -c .jsdoc.json",
"prepublishOnly": "npm run lint && npm run test && rollup -c rollup.config.prepublish.js"
}
}