package.json 886 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "whatwg-url",
  3. "version": "5.0.0",
  4. "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery",
  5. "main": "lib/public-api.js",
  6. "files": [
  7. "lib/"
  8. ],
  9. "author": "Sebastian Mayr <github@smayr.name>",
  10. "license": "MIT",
  11. "repository": "jsdom/whatwg-url",
  12. "dependencies": {
  13. "tr46": "~0.0.3",
  14. "webidl-conversions": "^3.0.0"
  15. },
  16. "devDependencies": {
  17. "eslint": "^2.6.0",
  18. "istanbul": "~0.4.3",
  19. "mocha": "^2.2.4",
  20. "recast": "~0.10.29",
  21. "request": "^2.55.0",
  22. "webidl2js": "^3.0.2"
  23. },
  24. "scripts": {
  25. "build": "node scripts/transform.js && node scripts/convert-idl.js",
  26. "coverage": "istanbul cover node_modules/mocha/bin/_mocha",
  27. "lint": "eslint .",
  28. "prepublish": "npm run build",
  29. "pretest": "node scripts/get-latest-platform-tests.js && npm run build",
  30. "test": "mocha"
  31. }
  32. }