package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "unicode-regex",
  3. "version": "3.0.0",
  4. "description": "regular expression for matching unicode category",
  5. "keywords": [
  6. "regular-expression",
  7. "unicode"
  8. ],
  9. "main": "lib/index.js",
  10. "types": "lib/index.d.ts",
  11. "repository": "https://github.com/ikatyang/unicode-regex",
  12. "homepage": "https://github.com/ikatyang/unicode-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": "yarn run build",
  21. "lint": "tslint -p ./tsconfig.json --type-check",
  22. "test": "jest",
  23. "generate": "ts-node ./scripts/generate.ts",
  24. "prebuild": "rm -rf ./lib",
  25. "build": "yarn run generate && tsc -p ./tsconfig.build.json",
  26. "postbuild": "cp -r ./src/data.generated ./lib",
  27. "release": "standard-version"
  28. },
  29. "dependencies": {
  30. "regexp-util": "^1.2.0"
  31. },
  32. "devDependencies": {
  33. "@types/del": "3.0.1",
  34. "@types/jest": "21.1.10",
  35. "@types/make-dir": "1.0.3",
  36. "@types/node": "8.10.49",
  37. "@types/prettier": "1.16.4",
  38. "del": "3.0.0",
  39. "jest": "21.2.1",
  40. "make-dir": "1.3.0",
  41. "prettier": "1.18.2",
  42. "prettier-config-ikatyang": "1.1.1",
  43. "standard-version": "4.4.0",
  44. "ts-jest": "21.2.4",
  45. "ts-node": "4.1.0",
  46. "tslint": "5.15.0",
  47. "tslint-config-ikatyang": "2.5.1",
  48. "tslint-config-prettier": "1.18.0",
  49. "tslint-plugin-prettier": "2.0.1",
  50. "typescript": "2.9.2",
  51. "unicode-12.1.0": "0.8.0"
  52. },
  53. "engines": {
  54. "node": ">= 4"
  55. },
  56. "files": [
  57. "/lib/**/*",
  58. "/ThirdPartyNoticeText.txt"
  59. ]
  60. }