package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "aria-query",
  3. "version": "5.3.2",
  4. "description": "Programmatic access to the ARIA specification",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "prepack": "npm run build",
  11. "prebuild": "rimraf lib",
  12. "build": "babel src --out-dir lib",
  13. "lint": "eslint --ext=js,mjs .",
  14. "prepublishOnly": "npm run build",
  15. "pretest": "npm run lint && flow",
  16. "build:tests": "npm run build && rimraf __tests-built__ && BABEL_ENV=test babel __tests__ --out-dir __tests-built__",
  17. "tests-built": "nyc tape --strict -r array.from/auto '__tests-built__/**/*.js'",
  18. "tests-only": "nyc tape --strict -r @babel/register '__tests__/**/*.js'",
  19. "test": "npm run tests-only",
  20. "posttest": "npm audit --production",
  21. "output_as_hack": "babel-node ./scripts/output_as_hack.js"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/A11yance/aria-query.git"
  26. },
  27. "keywords": [
  28. "accessibility",
  29. "ARIA"
  30. ],
  31. "author": "Jesse Beach <splendidnoise@gmail.com>",
  32. "license": "Apache-2.0",
  33. "bugs": {
  34. "url": "https://github.com/A11yance/aria-query/issues"
  35. },
  36. "homepage": "https://github.com/A11yance/aria-query#readme",
  37. "devDependencies": {
  38. "@babel/cli": "^7.25.6",
  39. "@babel/core": "^7.25.2",
  40. "@babel/eslint-parser": "^7.25.1",
  41. "@babel/node": "^7.25.0",
  42. "@babel/plugin-transform-react-jsx": "^7.25.2",
  43. "@babel/preset-env": "^7.25.4",
  44. "@babel/preset-flow": "^7.24.7",
  45. "@babel/register": "^7.24.6",
  46. "array.from": "^1.1.6",
  47. "array.prototype.some": "^1.1.6",
  48. "babel-plugin-module-resolver": "^5.0.2",
  49. "commander": "^9.4.1",
  50. "deep-equal-json": "^1.0.0",
  51. "eslint": "^8.57.0",
  52. "eslint-plugin-flowtype": "^8.0.3",
  53. "flow-bin": "^0.191.0",
  54. "mock-property": "^1.1.0",
  55. "nyc": "^10.3.2",
  56. "object-inspect": "^1.13.2",
  57. "object.values": "^1.2.0",
  58. "rimraf": "^2.7.1",
  59. "tape": "^5.9.0"
  60. },
  61. "browserslist": [
  62. ">0.2%",
  63. "not dead",
  64. "not op_mini all",
  65. "ie 11"
  66. ],
  67. "engines": {
  68. "node": ">= 0.4"
  69. }
  70. }