package.json 621 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "webidl-conversions",
  3. "version": "4.0.2",
  4. "description": "Implements the WebIDL algorithms for converting to and from JavaScript values",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "lint": "eslint .",
  8. "test": "mocha test/*.js",
  9. "coverage": "nyc mocha test/*.js"
  10. },
  11. "repository": "jsdom/webidl-conversions",
  12. "keywords": [
  13. "webidl",
  14. "web",
  15. "types"
  16. ],
  17. "files": [
  18. "lib/"
  19. ],
  20. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  21. "license": "BSD-2-Clause",
  22. "devDependencies": {
  23. "eslint": "^3.15.0",
  24. "mocha": "^1.21.4",
  25. "nyc": "^10.1.2"
  26. }
  27. }