package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "jsx-ast-utils",
  3. "version": "3.2.1",
  4. "description": "AST utility module for statically analyzing JSX",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "prebuild": "rimraf lib",
  8. "build": "babel src --out-dir lib",
  9. "prepublish": "not-in-publish || (safe-publish-latest && npm test && npm run build)",
  10. "prelint": "npm run build",
  11. "lint": "eslint .",
  12. "pretest": "npm run lint",
  13. "test": "npm run tests-only --",
  14. "posttest": "aud --production",
  15. "tests-only": "jest --coverage",
  16. "test:watch": "npm run tests-only -- --watch"
  17. },
  18. "devDependencies": {
  19. "@babel/core": "^7.15.5",
  20. "@babel/parser": "^7.15.6",
  21. "aud": "^1.1.5",
  22. "babel-cli": "^6.26.0",
  23. "babel-core": "^6.26.3",
  24. "babel-eslint": "^10.1.0",
  25. "babel-jest": "^20.0.3",
  26. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  27. "babel-plugin-transform-replace-object-assign": "^1.0.0",
  28. "babel-polyfill": "^6.26.0",
  29. "babel-preset-env": "^1.7.0",
  30. "babylon": "^6.18.0",
  31. "eslint": "^7.32.0",
  32. "eslint-config-airbnb-base": "^14.2.1",
  33. "eslint-plugin-import": "^2.24.2",
  34. "flow-parser": "^0.126.1",
  35. "in-publish": "^2.0.1",
  36. "jest": "^20.0.4",
  37. "jest-cli": "^20.0.4",
  38. "object.entries": "^1.1.4",
  39. "object.fromentries": "^2.0.4",
  40. "rimraf": "^2.7.1",
  41. "safe-publish-latest": "^1.1.4"
  42. },
  43. "engines": {
  44. "node": ">=4.0"
  45. },
  46. "keywords": [
  47. "jsx",
  48. "ast",
  49. "lint",
  50. "eslint"
  51. ],
  52. "author": "Ethan Cohen",
  53. "repository": {
  54. "type": "git",
  55. "url": "https://github.com/jsx-eslint/jsx-ast-utils"
  56. },
  57. "license": "MIT",
  58. "jest": {
  59. "coverageReporters": [
  60. "lcov",
  61. "html",
  62. "json"
  63. ],
  64. "coverageDirectory": "coverage",
  65. "testPathIgnorePatterns": [
  66. "/node_modules/",
  67. "helper.js"
  68. ]
  69. },
  70. "dependencies": {
  71. "array-includes": "^3.1.3",
  72. "object.assign": "^4.1.2"
  73. }
  74. }