package.json 971 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "qrcode-terminal",
  3. "keywords": ["ansi", "ascii", "qrcode", "console"],
  4. "version" : "0.12.0",
  5. "description" : "QRCodes, in the terminal",
  6. "homepage": "https://github.com/gtanner/qrcode-terminal",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/gtanner/qrcode-terminal"
  10. },
  11. "contributors": [{
  12. "name": "Gord Tanner",
  13. "email": "gtanner@gmail.com",
  14. "url": "http://github.com/gtanner"
  15. }, {
  16. "name": "Michael Brooks",
  17. "email": "mikeywbrooks@gmail.com",
  18. "url": "http://github.com/mwbrooks"
  19. }],
  20. "licenses": [{
  21. "type": "Apache 2.0"
  22. }],
  23. "main": "./lib/main",
  24. "bin": {
  25. "qrcode-terminal": "./bin/qrcode-terminal.js"
  26. },
  27. "preferGlobal": false,
  28. "devDependencies": {
  29. "sinon": "*",
  30. "mocha": "*",
  31. "expect.js": "*",
  32. "jshint": "*"
  33. },
  34. "scripts": {
  35. "test": "./node_modules/jshint/bin/jshint lib vendor && node example/basic.js && ./node_modules/mocha/bin/mocha -R nyan"
  36. }
  37. }