package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "jsx-ast-utils",
  3. "version": "3.3.5",
  4. "description": "AST utility module for statically analyzing JSX",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated && npm run build",
  8. "prebuild": "rimraf lib",
  9. "build": "babel src --out-dir lib",
  10. "prepublishOnly": "safe-publish-latest && npm test",
  11. "prepublish": "not-in-publish || npm run prepublishOnly",
  12. "prelint": "npm run build",
  13. "lint": "eslint .",
  14. "pretest": "npm run lint",
  15. "test": "npm run tests-only --",
  16. "posttest": "aud --production",
  17. "tests-only": "jest --coverage",
  18. "test:watch": "npm run tests-only -- --watch",
  19. "version": "auto-changelog && git add CHANGELOG.md",
  20. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  21. },
  22. "devDependencies": {
  23. "@babel/core": "^7.22.9",
  24. "@babel/eslint-parser": "^7.22.9",
  25. "@babel/parser": "^7.22.7",
  26. "aud": "^2.0.3",
  27. "auto-changelog": "^2.4.0",
  28. "babel-cli": "^6.26.0",
  29. "babel-core": "^6.26.3",
  30. "babel-jest": "^20.0.3",
  31. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  32. "babel-plugin-transform-replace-object-assign": "^1.0.0",
  33. "babel-polyfill": "^6.26.0",
  34. "babel-preset-env": "^1.7.0",
  35. "babylon": "^6.18.0",
  36. "eslint": "^8.45.0",
  37. "eslint-config-airbnb-base": "^15.0.0",
  38. "eslint-plugin-import": "^2.27.5",
  39. "flow-parser": "^0.126.1",
  40. "in-publish": "^2.0.1",
  41. "jest": "^20.0.4",
  42. "jest-cli": "^20.0.4",
  43. "npmignore": "^0.3.0",
  44. "object.entries": "^1.1.6",
  45. "object.fromentries": "^2.0.6",
  46. "rimraf": "^2.7.1",
  47. "safe-publish-latest": "^2.0.0"
  48. },
  49. "engines": {
  50. "node": ">=4.0"
  51. },
  52. "keywords": [
  53. "jsx",
  54. "ast",
  55. "lint",
  56. "eslint"
  57. ],
  58. "author": "Ethan Cohen",
  59. "repository": {
  60. "type": "git",
  61. "url": "https://github.com/jsx-eslint/jsx-ast-utils"
  62. },
  63. "license": "MIT",
  64. "dependencies": {
  65. "array-includes": "^3.1.6",
  66. "array.prototype.flat": "^1.3.1",
  67. "object.assign": "^4.1.4",
  68. "object.values": "^1.1.6"
  69. },
  70. "auto-changelog": {
  71. "output": "CHANGELOG.md",
  72. "template": "keepachangelog",
  73. "unreleased": false,
  74. "commitLimit": false,
  75. "backfillLimit": false,
  76. "hideCredit": true,
  77. "startingVersion": "3.3.4"
  78. },
  79. "publishConfig": {
  80. "ignore": [
  81. ".github/workflows",
  82. "jest.config.js"
  83. ]
  84. }
  85. }