package.json 511 B

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