package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "qrcode",
  3. "description": "QRCode / 2d Barcode api with both server side and client side support using canvas",
  4. "version": "1.5.3",
  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. "encode-utf8": "^1.0.3",
  43. "pngjs": "^5.0.0",
  44. "yargs": "^15.3.1"
  45. },
  46. "devDependencies": {
  47. "@babel/core": "^7.9.0",
  48. "@babel/preset-env": "^7.9.5",
  49. "@rollup/plugin-commonjs": "^11.1.0",
  50. "@rollup/plugin-node-resolve": "^7.1.3",
  51. "browserify": "^16.5.1",
  52. "canvas": "^2.8.0",
  53. "canvasutil": "0.0.4",
  54. "colors": "^1.4.0",
  55. "express": "^4.17.1",
  56. "htmlparser2": "^4.1.0",
  57. "rollup": "^2.6.1",
  58. "rollup-plugin-babel": "^4.4.0",
  59. "rollup-plugin-terser": "^5.3.0",
  60. "sinon": "^9.0.2",
  61. "standard": "^16.0.4",
  62. "tap": "^16.2.0"
  63. },
  64. "repository": {
  65. "type": "git",
  66. "url": "git://github.com/soldair/node-qrcode.git"
  67. },
  68. "engines": {
  69. "node": ">=10.13.0"
  70. },
  71. "standard": {
  72. "ignore": [
  73. "build/",
  74. "examples/vendors/",
  75. "lib/core/regex.js"
  76. ]
  77. }
  78. }