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.

50 lines
1.3 KiB

  1. {
  2. "name": "url-parse",
  3. "version": "1.5.1",
  4. "description": "Small footprint URL parser that works seamlessly across Node.js and browser environments",
  5. "main": "index.js",
  6. "scripts": {
  7. "browserify": "rm -rf dist && mkdir -p dist && browserify index.js -s URLParse -o dist/url-parse.js",
  8. "minify": "uglifyjs dist/url-parse.js --source-map -cm -o dist/url-parse.min.js",
  9. "test": "c8 --reporter=html --reporter=text mocha test/test.js",
  10. "test-browser": "node test/browser.js",
  11. "prepublishOnly": "npm run browserify && npm run minify",
  12. "watch": "mocha --watch test/test.js"
  13. },
  14. "files": [
  15. "index.js",
  16. "dist"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/unshiftio/url-parse.git"
  21. },
  22. "keywords": [
  23. "URL",
  24. "parser",
  25. "uri",
  26. "url",
  27. "parse",
  28. "query",
  29. "string",
  30. "querystring",
  31. "stringify"
  32. ],
  33. "author": "Arnout Kazemier",
  34. "license": "MIT",
  35. "dependencies": {
  36. "querystringify": "^2.1.1",
  37. "requires-port": "^1.0.0"
  38. },
  39. "devDependencies": {
  40. "assume": "^2.2.0",
  41. "browserify": "^16.2.3",
  42. "c8": "^7.3.1",
  43. "coveralls": "^3.1.0",
  44. "mocha": "^8.0.1",
  45. "pre-commit": "^1.2.2",
  46. "sauce-browsers": "^2.0.0",
  47. "sauce-test": "^1.3.3",
  48. "uglify-js": "^3.5.7"
  49. }
  50. }