package.json 1.2 KB

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