package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "jsx-ast-utils",
  3. "version": "3.3.3",
  4. "description": "AST utility module for statically analyzing JSX",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prebuild": "rimraf lib",
  9. "build": "babel src --out-dir lib",
  10. "prepublishOnly": "safe-publish-latest && npm test && npm run build",
  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. },
  20. "devDependencies": {
  21. "@babel/core": "^7.18.10",
  22. "@babel/eslint-parser": "^7.18.9",
  23. "@babel/parser": "^7.18.11",
  24. "aud": "^2.0.0",
  25. "babel-cli": "^6.26.0",
  26. "babel-core": "^6.26.3",
  27. "babel-jest": "^20.0.3",
  28. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  29. "babel-plugin-transform-replace-object-assign": "^1.0.0",
  30. "babel-polyfill": "^6.26.0",
  31. "babel-preset-env": "^1.7.0",
  32. "babylon": "^6.18.0",
  33. "eslint": "^8.21.0",
  34. "eslint-config-airbnb-base": "^15.0.0",
  35. "eslint-plugin-import": "^2.26.0",
  36. "flow-parser": "^0.126.1",
  37. "in-publish": "^2.0.1",
  38. "jest": "^20.0.4",
  39. "jest-cli": "^20.0.4",
  40. "npmignore": "^0.3.0",
  41. "object.entries": "^1.1.5",
  42. "object.fromentries": "^2.0.5",
  43. "rimraf": "^2.7.1",
  44. "safe-publish-latest": "^2.0.0"
  45. },
  46. "engines": {
  47. "node": ">=4.0"
  48. },
  49. "keywords": [
  50. "jsx",
  51. "ast",
  52. "lint",
  53. "eslint"
  54. ],
  55. "author": "Ethan Cohen",
  56. "repository": {
  57. "type": "git",
  58. "url": "https://github.com/jsx-eslint/jsx-ast-utils"
  59. },
  60. "license": "MIT",
  61. "dependencies": {
  62. "array-includes": "^3.1.5",
  63. "object.assign": "^4.1.3"
  64. },
  65. "publishConfig": {
  66. "ignore": [
  67. ".github/workflows",
  68. "jest.config.js"
  69. ]
  70. }
  71. }