forked from soldair/node-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.01 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
{
"name": "@slidoapp/qrcode",
"description": "Generate Quick Response (QR) codes using JavaScript in a browser, server side code, or using a command line tool.",
"version": "2.1.0",
"author": "Ryan Day <[email protected]>",
"contributors": [
"Vincenzo Greco <[email protected]>",
"Linus Unnebäck <[email protected]>",
"Jozef Izso <[email protected]>"
],
"keywords": [
"qr",
"code",
"canvas",
"qrcode"
],
"main": "./lib/index.js",
"browser": {
"./lib/index.js": "./lib/browser.js",
"fs": false
},
"types": "./types/index.d.ts",
"files": [
"bin",
"build",
"lib",
"helper",
"types"
],
"homepage": "https://github.com/slidoapp/node-qrcode",
"license": "MIT",
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"test": "node --throw-deprecation test.js",
"tap-junit-report": "tap replay -R junit --coverage-report=none --allow-empty-coverage --allow-incomplete-coverage 'test/**/*.test.js' > test-results.xml",
"build": "rollup -c",
"prepublish": "npm run build",
"browser": "node examples/clientsideserver.js"
},
"bin": {
"qrcode": "./bin/qrcode"
},
"dependencies": {
"dijkstrajs": "^1.0.3",
"pngjs": "^7.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"browserify": "^17.0.1",
"canvas": "^3.0.0-rc2",
"canvasutil": "0.0.4",
"colors": "^1.4.0",
"express": "^4.21.1",
"htmlparser2": "^9.1.0",
"rollup": "^4.24.0",
"sinon": "^19.0.2",
"standard": "^17.1.2",
"tap": "^20.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slidoapp/node-qrcode.git"
},
"engines": {
"node": ">=18"
},
"standard": {
"ignore": [
"build/",
"examples/vendors/",
"lib/core/regex.js"
]
}
}