package.json 894 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "url",
  3. "description": "The core `url` packaged standalone for use with Browserify.",
  4. "version": "0.11.3",
  5. "author": "defunctzombie",
  6. "dependencies": {
  7. "punycode": "^1.4.1",
  8. "qs": "^6.11.2"
  9. },
  10. "main": "./url.js",
  11. "keywords": [
  12. "parsing",
  13. "url",
  14. "analyze"
  15. ],
  16. "devDependencies": {
  17. "@ljharb/eslint-config": "^21.1.0",
  18. "acorn": "^8.10.0",
  19. "aud": "^2.0.3",
  20. "eslint": "=8.8.0",
  21. "mocha": "^3.5.3",
  22. "nyc": "^10.3.2",
  23. "zuul": "^3.12.0"
  24. },
  25. "scripts": {
  26. "lint": "eslint .",
  27. "pretest": "npm run lint",
  28. "tests-only": "nyc mocha",
  29. "test": "npm run tests-only",
  30. "posttest": "aud --production",
  31. "zuul": "zuul -- test/index.js",
  32. "test-local": "zuul --local -- test/index.js"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "https://github.com/defunctzombie/node-url.git"
  37. },
  38. "license": "MIT"
  39. }