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.

68 lines
1.5 KiB

  1. {
  2. "name": "native-url",
  3. "version": "0.2.6",
  4. "description": "Brings the node url api layer to whatwg-url class",
  5. "source": "src/index.js",
  6. "main": "dist/index.js",
  7. "module": "dist/index.mjs",
  8. "typings": "third_party/url.d.ts",
  9. "files": [
  10. "dist",
  11. "third_party/url.d.ts"
  12. ],
  13. "unpkg": "dist/index.umd.js",
  14. "jsdelivr": "dist/index.umd.js",
  15. "scripts": {
  16. "build": "microbundle",
  17. "test:browser": "karmatic",
  18. "test:node": "jest",
  19. "pretest": "yarn run build",
  20. "test": "jest && karmatic"
  21. },
  22. "author": "Janicklas Ralph",
  23. "license": "Apache-2.0",
  24. "dependencies": {
  25. "querystring": "^0.2.0"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git+https://github.com/GoogleChromeLabs/native-url.git"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/GoogleChromeLabs/native-url/issues"
  33. },
  34. "homepage": "https://github.com/GoogleChromeLabs/native-url#readme",
  35. "keywords": [
  36. "url",
  37. "uri",
  38. "normalization",
  39. "normalisation",
  40. "query",
  41. "querystring",
  42. "whatwg-url",
  43. "parse",
  44. "format",
  45. "resolve",
  46. "resolveObject"
  47. ],
  48. "devDependencies": {
  49. "husky": "^3.0.5",
  50. "jest": "^24.9.0",
  51. "karmatic": "^1.4.0",
  52. "lint-staged": "^9.2.5",
  53. "microbundle": "^0.11.0",
  54. "prettier": "^1.18.2",
  55. "webpack": "^4.41.2"
  56. },
  57. "lint-staged": {
  58. "{src,tests}/**/*.js": [
  59. "prettier --write",
  60. "git add"
  61. ]
  62. },
  63. "husky": {
  64. "hooks": {
  65. "pre-commit": "yarn run test && lint-staged"
  66. }
  67. }
  68. }