package.json 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "node-abi",
  3. "version": "3.47.0",
  4. "description": "Get the Node ABI for a given target and runtime, and vice versa.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tape test/index.js",
  8. "update-abi-registry": "node --unhandled-rejections=strict scripts/update-abi-registry.js"
  9. },
  10. "files": [
  11. "abi_registry.json"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/electron/node-abi.git"
  16. },
  17. "keywords": [
  18. "node",
  19. "electron",
  20. "node_module_version",
  21. "abi",
  22. "v8"
  23. ],
  24. "author": "Lukas Geiger",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/electron/node-abi/issues"
  28. },
  29. "homepage": "https://github.com/electron/node-abi#readme",
  30. "devDependencies": {
  31. "@continuous-auth/semantic-release-npm": "^3.0.0",
  32. "got": "^11.8.2",
  33. "tape": "^5.3.1"
  34. },
  35. "dependencies": {
  36. "semver": "^7.3.5"
  37. },
  38. "engines": {
  39. "node": ">=10"
  40. }
  41. }