package.json 982 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "webidl-conversions",
  3. "version": "7.0.0",
  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. "test-no-sab": "mocha --parallel --jobs 2 --require test/helpers/delete-sab.js test/*.js",
  10. "coverage": "nyc mocha test/*.js"
  11. },
  12. "_scripts_comments": {
  13. "test-no-sab": "Node.js internals are broken by deleting SharedArrayBuffer if you run tests on the main thread. Using Mocha's parallel mode avoids this."
  14. },
  15. "repository": "jsdom/webidl-conversions",
  16. "keywords": [
  17. "webidl",
  18. "web",
  19. "types"
  20. ],
  21. "files": [
  22. "lib/"
  23. ],
  24. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  25. "license": "BSD-2-Clause",
  26. "devDependencies": {
  27. "@domenic/eslint-config": "^1.3.0",
  28. "eslint": "^7.32.0",
  29. "mocha": "^9.1.1",
  30. "nyc": "^15.1.0"
  31. },
  32. "engines": {
  33. "node": ">=12"
  34. }
  35. }