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.

41 lines
1.2 KiB

  1. {
  2. "name": "whatwg-fetch",
  3. "description": "A window.fetch polyfill.",
  4. "version": "3.6.2",
  5. "main": "./dist/fetch.umd.js",
  6. "module": "./fetch.js",
  7. "repository": "github/fetch",
  8. "license": "MIT",
  9. "devDependencies": {
  10. "abortcontroller-polyfill": "^1.1.9",
  11. "chai": "^4.1.2",
  12. "eslint": "^7.20.0",
  13. "eslint-plugin-github": "^4.1.1",
  14. "karma": "^3.0.0",
  15. "karma-chai": "^0.1.0",
  16. "karma-chrome-launcher": "^2.2.0",
  17. "karma-detect-browsers": "^2.3.2",
  18. "karma-firefox-launcher": "^1.1.0",
  19. "karma-mocha": "^1.3.0",
  20. "karma-safari-launcher": "^1.0.0",
  21. "karma-safaritechpreview-launcher": "0.0.6",
  22. "mocha": "^4.0.1",
  23. "prettier": "^1.19.1",
  24. "promise-polyfill": "6.0.2",
  25. "rollup": "^0.59.1",
  26. "url-search-params": "0.6.1"
  27. },
  28. "files": [
  29. "LICENSE",
  30. "dist/fetch.umd.js",
  31. "dist/fetch.umd.js.flow",
  32. "fetch.js",
  33. "fetch.js.flow"
  34. ],
  35. "scripts": {
  36. "karma": "karma start ./test/karma.config.js --no-single-run --auto-watch",
  37. "prepare": "make dist/fetch.umd.js dist/fetch.umd.js.flow",
  38. "pretest": "make",
  39. "test": "karma start ./test/karma.config.js && karma start ./test/karma-worker.config.js"
  40. }
  41. }