package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "qrcode-reader",
  3. "version": "1.0.4",
  4. "description": "fork of lazarsoft's jsqrcode for node",
  5. "main": "dist/index.js",
  6. "module": "src/index.js",
  7. "jsnext:main": "src/index.js",
  8. "scripts": {
  9. "build": "rollup -c",
  10. "watch": "rollup -c -w",
  11. "minify": "uglifyjs dist/index.js -o dist/index.min.js --compress --mangle",
  12. "lint": "eslint src test",
  13. "pretest": "npm run lint",
  14. "test": "mocha",
  15. "build-and-test": "npm run build && npm test",
  16. "preversion": "npm run lint && npm run build && npm run minify && npm test"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/edi9999/jsqrcode.git"
  21. },
  22. "author": "",
  23. "license": "Apache-2.0",
  24. "bugs": {
  25. "url": "https://github.com/edi9999/jsqrcode/issues"
  26. },
  27. "homepage": "https://github.com/edi9999/jsqrcode",
  28. "devDependencies": {
  29. "chai": "^4.1.2",
  30. "eslint": "^4.7.2",
  31. "image-parser": "^1.2.5",
  32. "jimp": "^0.2.28",
  33. "mocha": "^3.5.3",
  34. "rollup": "^0.50.0",
  35. "uglify-js": "^3.1.2"
  36. }
  37. }