-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 KB
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
{
"name": "@grinstead/makeqrcode",
"version": "1.0.2",
"description": "Pure JS QR Code Generator by Joe Grinstead",
"main": "dist/makeQrCode.min.mjs",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/grinstead/makeQrCode.git"
},
"author": "Joe Grinstead",
"license": "BSD-2-Clause",
"private": false,
"scripts": {
"build": "yarn google-closure-compiler --js='src/**.mjs' --js='src/**.js' --language_out=ECMASCRIPT5_STRICT --strict_mode_input --assume_function_wrapper --entry_point=src/index.js --dependency_mode=PRUNE --inject_libraries=false --compilation_level=ADVANCED --js_output_file=dist/makeQrCode.min.mjs && sed -i '' 's/window\\.\\(.*\\)=function(/export function \\1(/g' dist/makeQrCode.min.mjs"
},
"devDependencies": {
"google-closure-compiler": "^20210406.0.0"
},
"bugs": {
"url": "https://github.com/grinstead/makeQrCode/issues"
},
"homepage": "https://github.com/grinstead/makeQrCode#readme",
"keywords": [
"qr",
"qrcode",
"barcode"
]
}