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.

61 lines
1.7 KiB

  1. {
  2. "name": "axobject-query",
  3. "version": "2.2.0",
  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. "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. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/A11yance/axobject-query.git"
  24. },
  25. "keywords": [
  26. "accessibility"
  27. ],
  28. "author": "Jesse Beach <splendidnoise@gmail.com>",
  29. "license": "Apache-2.0",
  30. "bugs": {
  31. "url": "https://github.com/A11yance/axobject-query/issues"
  32. },
  33. "homepage": "https://github.com/A11yance/axobject-query#readme",
  34. "devDependencies": {
  35. "@babel/cli": "^7.6.4",
  36. "@babel/core": "^7.6.4",
  37. "@babel/preset-env": "^7.6.3",
  38. "@babel/preset-flow": "^7.7.4",
  39. "babel-eslint": "^10.0.1",
  40. "babel-jest": "^24.0.0",
  41. "coveralls": "^2.12.0",
  42. "eslint": "^5 || ^6",
  43. "eslint-config-airbnb-base": "^13.0.0",
  44. "eslint-plugin-flowtype": "^3.5.0",
  45. "eslint-plugin-import": "^2.18.0",
  46. "expect": "^1.20.2",
  47. "flow-bin": "^0.112.0",
  48. "jest": "^24.9.0",
  49. "rimraf": "^2.6.3"
  50. },
  51. "dependencies": {},
  52. "jest": {
  53. "coverageReporters": [
  54. "lcov"
  55. ],
  56. "coverageDirectory": "reports",
  57. "roots": [
  58. "<rootDir>/__tests__"
  59. ]
  60. }
  61. }