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.

59 lines
1.4 KiB

  1. {
  2. "name": "whatwg-url",
  3. "version": "8.5.0",
  4. "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "webidl2js-wrapper.js",
  9. "dist/"
  10. ],
  11. "author": "Sebastian Mayr <github@smayr.name>",
  12. "license": "MIT",
  13. "repository": "jsdom/whatwg-url",
  14. "dependencies": {
  15. "lodash": "^4.7.0",
  16. "tr46": "^2.0.2",
  17. "webidl-conversions": "^6.1.0"
  18. },
  19. "devDependencies": {
  20. "browserify": "^17.0.0",
  21. "domexception": "^2.0.1",
  22. "eslint": "^7.20.0",
  23. "glob": "^7.1.6",
  24. "got": "^11.8.1",
  25. "jest": "^26.6.3",
  26. "recast": "^0.20.4",
  27. "webidl2js": "^16.2.0"
  28. },
  29. "engines": {
  30. "node": ">=10"
  31. },
  32. "scripts": {
  33. "coverage": "jest --coverage",
  34. "lint": "eslint .",
  35. "prepare": "node scripts/transform.js",
  36. "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js",
  37. "build-live-viewer": "browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js",
  38. "test": "jest"
  39. },
  40. "jest": {
  41. "collectCoverageFrom": [
  42. "lib/**/*.js",
  43. "!lib/utils.js"
  44. ],
  45. "coverageDirectory": "coverage",
  46. "coverageReporters": [
  47. "lcov",
  48. "text-summary"
  49. ],
  50. "testEnvironment": "node",
  51. "testMatch": [
  52. "<rootDir>/test/**/*.js"
  53. ],
  54. "testPathIgnorePatterns": [
  55. "^<rootDir>/test/testharness.js$",
  56. "^<rootDir>/test/web-platform-tests/"
  57. ]
  58. }
  59. }