package.json 634 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "unquote",
  3. "version": "1.1.1",
  4. "description": "Remove wrapping quotes from a string.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test/*"
  8. },
  9. "author": "Cameron Lakenen <cameron@lakenen.com>",
  10. "license": "MIT",
  11. "devDependencies": {
  12. "tape": "^2.13.4"
  13. },
  14. "directories": {
  15. "test": "test"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/lakenen/node-unquote.git"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/lakenen/node-unquote/issues"
  23. },
  24. "homepage": "https://github.com/lakenen/node-unquote",
  25. "keywords": [
  26. "string",
  27. "unquote",
  28. "quotes"
  29. ]
  30. }