-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "dgc-green-pass-decoder",
"version": "1.0.0",
"description": "A simple web app to read what's inside the Green Pass QR-code.",
"dependencies": {
"@babel/runtime": "^7.15.4",
"@fidm/x509": "^1.2.1",
"base45": "^3.0.0",
"cbor": "^8.0.0",
"cose-js": "^0.6.0",
"jsqr": "^1.4.0",
"pako": "^2.0.4",
"qr-scanner": "^1.3.0",
"qrcode": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cross-env": "^7.0.3",
"tinyify": "^3.0.0",
"uglifyjs": "^2.4.11",
"watchify": "^4.0.0"
},
"scripts": {
"watch": "watchify src/index.js -o public/bundle.js -v --debug",
"build": "npm run build:certificates && npm run build:javascript",
"build:certificates": "cross-env OUT_DIR='public/assets' EXPORT_MARKDOWN=true MARKDOWN_DIR='docs/' node tools/certs-scraper/index.js",
"build:javascript": "browserify src/index.js -o public/bundle.js && uglifyjs public/bundle.js --compress -o public/bundle.js",
"shell": "node --experimental-repl-await",
"deploy": "git subtree push --prefix public origin gh-pages"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}