package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "axobject-query",
  3. "version": "3.2.1",
  4. "description": "Programmatic access to information about the AXObject Model",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "rimraf lib && babel src --out-dir lib",
  11. "flow": "flow",
  12. "lint": "eslint --config .eslintrc src __tests__ scripts",
  13. "lint:fix": "npm run lint -- --fix",
  14. "pretest": "npm run lint:fix && npm run flow",
  15. "test": "npm run jest",
  16. "test:ci": "npm run jest -- --ci --runInBand",
  17. "jest": "jest --coverage __tests__/**/*"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/A11yance/axobject-query.git"
  22. },
  23. "keywords": [
  24. "accessibility"
  25. ],
  26. "author": "Jesse Beach <splendidnoise@gmail.com>",
  27. "license": "Apache-2.0",
  28. "bugs": {
  29. "url": "https://github.com/A11yance/axobject-query/issues"
  30. },
  31. "homepage": "https://github.com/A11yance/axobject-query#readme",
  32. "devDependencies": {
  33. "@babel/cli": "^7.19.3",
  34. "@babel/core": "^7.19.6",
  35. "@babel/eslint-parser": "^7.19.1",
  36. "@babel/preset-env": "^7.19.4",
  37. "@babel/preset-flow": "^7.18.6",
  38. "babel-jest": "^29.2.1",
  39. "eslint": "^8.26.0",
  40. "eslint-config-airbnb-base": "^15.0.0",
  41. "eslint-plugin-flowtype": "^8.0.3",
  42. "eslint-plugin-import": "^2.26.0",
  43. "eslint-plugin-jest": "^27.1.3",
  44. "expect": "^29.2.1",
  45. "flow-bin": "^0.190.1",
  46. "flow-typed": "^3.8.0",
  47. "jest": "^29.2.1",
  48. "rimraf": "^3.0.2"
  49. },
  50. "jest": {
  51. "coverageReporters": [
  52. "lcov"
  53. ],
  54. "coverageDirectory": "reports",
  55. "roots": [
  56. "<rootDir>/__tests__"
  57. ]
  58. },
  59. "browserslist": [
  60. ">0.2%",
  61. "not dead",
  62. "not op_mini all",
  63. "ie 11"
  64. ],
  65. "dependencies": {
  66. "dequal": "^2.0.3"
  67. }
  68. }