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.

78 lines
2.1 KiB

  1. {
  2. "name": "aria-query",
  3. "version": "4.2.2",
  4. "description": "Programmatic access to the ARIA specification",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "rimraf lib && babel src --out-dir lib",
  11. "prepare": "npm run lint && npm run flow && npm run test && npm run build",
  12. "coveralls": "cat ./reports/lcov.info | coveralls",
  13. "flow": "flow; test $? -eq 0 -o $? -eq 2",
  14. "lint": "eslint --config .eslintrc src __tests__",
  15. "lint:fix": "npm run lint -- --fix",
  16. "pretest": "npm run lint:fix && npm run flow",
  17. "test": "npm run jest",
  18. "test:ci": "npm run jest -- --ci --runInBand",
  19. "jest": "jest --coverage __tests__/**/*",
  20. "output_as_hack": "babel-node ./scripts/output_as_hack.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/A11yance/aria-query.git"
  25. },
  26. "keywords": [
  27. "accessibility",
  28. "ARIA"
  29. ],
  30. "author": "Jesse Beach <splendidnoise@gmail.com>",
  31. "license": "Apache-2.0",
  32. "bugs": {
  33. "url": "https://github.com/A11yance/aria-query/issues"
  34. },
  35. "homepage": "https://github.com/A11yance/aria-query#readme",
  36. "devDependencies": {
  37. "@babel/cli": "^7.10.1",
  38. "@babel/core": "^7.10.2",
  39. "@babel/plugin-transform-runtime": "^7.10.1",
  40. "@babel/preset-env": "^7.10.2",
  41. "@babel/preset-flow": "^7.10.1",
  42. "babel-eslint": "^10.1.0",
  43. "babel-jest": "^24.0.0",
  44. "commander": "^2.11.0",
  45. "coveralls": "^2.11.15",
  46. "eslint": "^6.8.0",
  47. "eslint-config-airbnb-base": "^13.0.0",
  48. "eslint-plugin-flowtype": "^3.5.0",
  49. "eslint-plugin-import": "^2.21.2",
  50. "expect": "^1.20.2",
  51. "flow-bin": "^0.112.0",
  52. "jest": "^24.9.0",
  53. "minimist": "^1.2.5",
  54. "rimraf": "^2.6.3"
  55. },
  56. "engines": {
  57. "node": ">=6.0"
  58. },
  59. "dependencies": {
  60. "@babel/runtime": "^7.10.2",
  61. "@babel/runtime-corejs3": "^7.10.2"
  62. },
  63. "jest": {
  64. "coverageReporters": [
  65. "lcov"
  66. ],
  67. "coverageDirectory": "reports",
  68. "roots": [
  69. "<rootDir>/__tests__"
  70. ]
  71. },
  72. "browserslist": [
  73. ">0.2%",
  74. "not dead",
  75. "not op_mini all",
  76. "ie 11"
  77. ]
  78. }