package.json 795 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "power-assert-util-string-width",
  3. "description": "calculates width of given string",
  4. "version": "1.2.0",
  5. "author": {
  6. "name": "Takuto Wada",
  7. "email": "takuto.wada@gmail.com",
  8. "url": "https://github.com/twada"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/twada/power-assert-runtime/issues"
  12. },
  13. "dependencies": {
  14. "eastasianwidth": "^0.2.0"
  15. },
  16. "devDependencies": {
  17. "mocha": "^5.0.0"
  18. },
  19. "files": [
  20. "README.md",
  21. "index.js"
  22. ],
  23. "homepage": "https://github.com/twada/power-assert-runtime",
  24. "keywords": [
  25. "string",
  26. "unicode",
  27. "width"
  28. ],
  29. "license": "MIT",
  30. "main": "index.js",
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/twada/power-assert-runtime.git"
  34. },
  35. "scripts": {
  36. "test": "mocha"
  37. }
  38. }