package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "cjk-regex",
  3. "version": "2.0.1",
  4. "description": "regular expression for matching CJK text",
  5. "keywords": [
  6. "cjk",
  7. "regular-expression"
  8. ],
  9. "main": "lib/index.js",
  10. "types": "lib/index.d.ts",
  11. "repository": "https://github.com/ikatyang/cjk-regex",
  12. "homepage": "https://github.com/ikatyang/cjk-regex#readme",
  13. "author": {
  14. "name": "Ika",
  15. "email": "ikatyang@gmail.com",
  16. "url": "https://github.com/ikatyang"
  17. },
  18. "license": "MIT",
  19. "scripts": {
  20. "prepublish": "npm run build",
  21. "lint": "tslint -p ./tsconfig.json --type-check",
  22. "test": "jest",
  23. "prebuild": "rm -rf ./lib",
  24. "build": "tsc -p ./tsconfig.build.json",
  25. "release": "standard-version"
  26. },
  27. "dependencies": {
  28. "regexp-util": "^1.2.1",
  29. "unicode-regex": "^2.0.0"
  30. },
  31. "devDependencies": {
  32. "@types/jest": "21.1.10",
  33. "jest": "21.2.1",
  34. "prettier": "1.18.2",
  35. "prettier-config-ikatyang": "1.1.1",
  36. "standard-version": "4.4.0",
  37. "ts-jest": "21.2.4",
  38. "tslint": "5.15.0",
  39. "tslint-config-ikatyang": "2.5.1",
  40. "tslint-config-prettier": "1.18.0",
  41. "tslint-plugin-prettier": "2.0.1",
  42. "typescript": "2.9.2"
  43. },
  44. "engines": {
  45. "node": ">= 4"
  46. },
  47. "files": [
  48. "/lib/**/*"
  49. ]
  50. }