package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "angular-estree-parser",
  3. "version": "2.4.0",
  4. "description": "A parser that converts Angular source code into an ESTree-compatible form",
  5. "keywords": [],
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "repository": "https://github.com/ikatyang/angular-estree-parser",
  9. "homepage": "https://github.com/ikatyang/angular-estree-parser#readme",
  10. "author": {
  11. "name": "Ika",
  12. "email": "ikatyang@gmail.com",
  13. "url": "https://github.com/ikatyang"
  14. },
  15. "license": "MIT",
  16. "scripts": {
  17. "prepublish": "yarn run build",
  18. "lint": "tslint -p ./tsconfig.json",
  19. "test": "jest",
  20. "prebuild": "rm -rf ./lib",
  21. "build": "tsc -p ./tsconfig.build.json",
  22. "release": "standard-version"
  23. },
  24. "dependencies": {
  25. "lines-and-columns": "^1.1.6",
  26. "tslib": "^2.0.3"
  27. },
  28. "devDependencies": {
  29. "@angular/compiler": "12.0.2",
  30. "@babel/code-frame": "7.8.3",
  31. "@babel/parser": "7.6.4",
  32. "@babel/types": "7.1.5",
  33. "@types/babel-types": "7.0.4",
  34. "@types/babel__code-frame": "7.0.1",
  35. "@types/jest": "23.3.14",
  36. "@types/prettier": "1.18.3",
  37. "jest": "23.6.0",
  38. "jest-snapshot-serializer-raw": "1.1.0",
  39. "prettier": "1.18.2",
  40. "prettier-config-ikatyang": "1.1.1",
  41. "standard-version": "4.4.0",
  42. "ts-jest": "23.10.5",
  43. "tslint": "5.20.1",
  44. "tslint-config-prettier": "1.18.0",
  45. "tslint-plugin-prettier": "2.1.0",
  46. "typescript": "4.1.2"
  47. },
  48. "peerDependencies": {
  49. "@angular/compiler": "^9.1.0 || ^10.0.0 || ^11.0.0 || ^12.0.0"
  50. },
  51. "engines": {
  52. "node": ">= 10.13.0"
  53. },
  54. "files": [
  55. "/lib/**/*"
  56. ]
  57. }