-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1001 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
{
"name": "webcomponent-qr-reader",
"version": "1.0.3",
"description": "Web Component for reading QR codes",
"main": "dist/index.js",
"scripts": {
"start": "concurrently \"npm run watch\" \"npm run serve\" ",
"watch": "npm run build -- --watch",
"build": "esbuild index.js --bundle --outfile=dist/index.js",
"serve": "http-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/educastellano/qr-reader.git"
},
"keywords": [
"qr",
"qrcode",
"qrreader",
"qr-code",
"qr-reader",
"webcomponent",
"custom-element"
],
"author": "Eduard Castellano",
"license": "ISC",
"bugs": {
"url": "https://github.com/educastellano/qr-reader/issues"
},
"homepage": "https://github.com/educastellano/qr-reader#readme",
"devDependencies": {
"concurrently": "^8.2.2",
"esbuild": "0.19.5",
"http-server": "^14.1.1",
"standard": "^17.1.0"
}
}