-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (77 loc) · 1.75 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
{
"name": "algorand-qrcode",
"version": "3.3.0",
"description": "Algorand QR Code generator js module",
"repository": {
"type": "git",
"url": "git+https://github.com/emg110/algorand-qrcode.git"
},
"bin": {
"algoqrcode": "bin/algoqrcode.cjs"
},
"main": "index.mjs",
"author": "MG <[email protected]>",
"contributors": [
{
"name": "MG",
"email": "[email protected]",
"url": "http://github.com/emg110"
},
{
"name": "Sheghzo",
"email": "[email protected]",
"url": "http://github.com/sheghzo"
}
],
"homepage": "https://github.com/emg110/algorand-qrcode#readme",
"private": false,
"dependencies": {
"encode-utf8": "^2.0.0",
"express-favicon": "^2.0.1",
"yargs": "^17.6.2",
"qrcode-svg": "^1.1.0",
"browser-or-node": "^2.1.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@babel/preset-react": "^7.18.6",
"es2015": "latest",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babelify": "^10.0.0"
},
"scripts": {
"pretest": "npm run lint",
"build": "rollup -c",
"cli": "node ./bin/algoqrcode.cjs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/emg110/algorand-qrcode/issues"
},
"engines": {
"node": ">=10.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}