package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "simple-wcswidth",
  3. "version": "1.0.1",
  4. "description": "Simplified JS/TS implementation of wcswidth() written by Markus Kuhn in C",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "repository": "git@github.com:ayonious/simple-wcswidth.git",
  8. "author": "Nahiyan Kamal <noyanayihan@gmail.com>",
  9. "license": "MIT",
  10. "scripts": {
  11. "setup": "yarn",
  12. "build": "tsc",
  13. "format": "prettier --write \"**/*.{json,md,ts,tsx,yml,js,jsx}\"",
  14. "test": "jest --config jestconfig.json",
  15. "lint": "eslint --ext=js,ts ."
  16. },
  17. "keywords": [
  18. "wcwidth",
  19. "wcswidth",
  20. "console-width"
  21. ],
  22. "files": [
  23. "dist"
  24. ],
  25. "devDependencies": {
  26. "@semantic-release/changelog": "^5.0.1",
  27. "@semantic-release/git": "^9.0.0",
  28. "@types/jest": "^26.0.16",
  29. "@typescript-eslint/eslint-plugin": "^4.9.0",
  30. "@typescript-eslint/parser": "^4.9.0",
  31. "eslint": "^7.15.0",
  32. "eslint-config-airbnb-base": "^14.2.1",
  33. "eslint-config-prettier": "^6.15.0",
  34. "eslint-plugin-import": "^2.22.1",
  35. "eslint-plugin-prettier": "^3.2.0",
  36. "husky": "^4.3.0",
  37. "jest": "^26.6.3",
  38. "prettier": "^2.2.1",
  39. "pretty-quick": "^3.1.0",
  40. "semantic-release": "^17.3.0",
  41. "ts-jest": "^26.4.4",
  42. "typescript": "^4.1.2"
  43. }
  44. }