package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "qrcode",
  3. "description": "QRCode / 2d Barcode api with both server side and client side support using canvas",
  4. "version": "1.5.4",
  5. "author": "Ryan Day <soldair@gmail.com>",
  6. "contributors": [
  7. "Vincenzo Greco <greco.vincenzo@gmail.com>",
  8. "Linus Unnebäck <linus@folkdatorn.se>"
  9. ],
  10. "keywords": [
  11. "qr",
  12. "code",
  13. "canvas",
  14. "qrcode"
  15. ],
  16. "main": "./lib/index.js",
  17. "browser": {
  18. "./lib/index.js": "./lib/browser.js",
  19. "fs": false
  20. },
  21. "files": [
  22. "bin",
  23. "build",
  24. "lib",
  25. "helper"
  26. ],
  27. "homepage": "http://github.com/soldair/node-qrcode",
  28. "license": "MIT",
  29. "scripts": {
  30. "lint": "standard",
  31. "pretest": "npm run lint",
  32. "test": "node --throw-deprecation test.js",
  33. "build": "rollup -c",
  34. "prepublish": "npm run build",
  35. "browser": "node examples/clientsideserver.js"
  36. },
  37. "bin": {
  38. "qrcode": "./bin/qrcode"
  39. },
  40. "dependencies": {
  41. "dijkstrajs": "^1.0.1",
  42. "pngjs": "^5.0.0",
  43. "yargs": "^15.3.1"
  44. },
  45. "devDependencies": {
  46. "@babel/core": "^7.9.0",
  47. "@babel/preset-env": "^7.9.5",
  48. "@rollup/plugin-commonjs": "^11.1.0",
  49. "@rollup/plugin-node-resolve": "^7.1.3",
  50. "browserify": "^16.5.1",
  51. "canvas": "^2.8.0",
  52. "canvasutil": "0.0.4",
  53. "colors": "^1.4.0",
  54. "express": "^4.17.1",
  55. "htmlparser2": "^4.1.0",
  56. "rollup": "^2.6.1",
  57. "rollup-plugin-babel": "^4.4.0",
  58. "rollup-plugin-terser": "^5.3.0",
  59. "sinon": "^9.0.2",
  60. "standard": "^16.0.4",
  61. "tap": "^16.2.0"
  62. },
  63. "repository": {
  64. "type": "git",
  65. "url": "git://github.com/soldair/node-qrcode.git"
  66. },
  67. "engines": {
  68. "node": ">=10.13.0"
  69. },
  70. "standard": {
  71. "ignore": [
  72. "build/",
  73. "examples/vendors/",
  74. "lib/core/regex.js"
  75. ]
  76. }
  77. }