web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.8 KiB

  1. {
  2. "name": "jsx-ast-utils",
  3. "version": "3.2.0",
  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. "coveralls": "cat ./reports/lcov.info | coveralls",
  11. "lint": "eslint .",
  12. "pretest": "npm run lint",
  13. "test": "npm run tests-only --",
  14. "tests-only": "jest --coverage",
  15. "test:watch": "npm run tests-only -- --watch"
  16. },
  17. "devDependencies": {
  18. "@babel/core": "^7.12.10",
  19. "@babel/parser": "^7.12.11",
  20. "babel-cli": "^6.26.0",
  21. "babel-core": "^6.26.3",
  22. "babel-eslint": "^10.1.0",
  23. "babel-jest": "^20.0.3",
  24. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  25. "babel-plugin-transform-replace-object-assign": "^1.0.0",
  26. "babel-polyfill": "^6.26.0",
  27. "babel-preset-env": "^1.7.0",
  28. "babylon": "^6.18.0",
  29. "coveralls": "^3.1.0",
  30. "eslint": "^7.15.0",
  31. "eslint-config-airbnb-base": "^14.2.1",
  32. "eslint-plugin-import": "^2.22.1",
  33. "flow-parser": "^0.126.1",
  34. "in-publish": "^2.0.1",
  35. "jest": "^20.0.4",
  36. "jest-cli": "^20.0.4",
  37. "object.entries": "^1.1.3",
  38. "object.fromentries": "^2.0.3",
  39. "rimraf": "^2.7.1",
  40. "safe-publish-latest": "^1.1.4"
  41. },
  42. "engines": {
  43. "node": ">=4.0"
  44. },
  45. "keywords": [
  46. "jsx",
  47. "ast",
  48. "lint",
  49. "eslint"
  50. ],
  51. "author": "Ethan Cohen",
  52. "repository": {
  53. "type": "git",
  54. "url": "https://github.com/evcohen/jsx-ast-utils"
  55. },
  56. "license": "MIT",
  57. "jest": {
  58. "coverageReporters": [
  59. "lcov"
  60. ],
  61. "coverageDirectory": "reports",
  62. "testPathIgnorePatterns": [
  63. "/node_modules/",
  64. "helper.js"
  65. ]
  66. },
  67. "dependencies": {
  68. "array-includes": "^3.1.2",
  69. "object.assign": "^4.1.2"
  70. }
  71. }