package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "node-gyp",
  3. "description": "Node.js native addon build tool",
  4. "license": "MIT",
  5. "keywords": [
  6. "native",
  7. "addon",
  8. "module",
  9. "c",
  10. "c++",
  11. "bindings",
  12. "gyp"
  13. ],
  14. "version": "11.2.0",
  15. "installVersion": 11,
  16. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/nodejs/node-gyp.git"
  20. },
  21. "preferGlobal": true,
  22. "bin": "./bin/node-gyp.js",
  23. "main": "./lib/node-gyp.js",
  24. "dependencies": {
  25. "env-paths": "^2.2.0",
  26. "exponential-backoff": "^3.1.1",
  27. "graceful-fs": "^4.2.6",
  28. "make-fetch-happen": "^14.0.3",
  29. "nopt": "^8.0.0",
  30. "proc-log": "^5.0.0",
  31. "semver": "^7.3.5",
  32. "tar": "^7.4.3",
  33. "tinyglobby": "^0.2.12",
  34. "which": "^5.0.0"
  35. },
  36. "engines": {
  37. "node": "^18.17.0 || >=20.5.0"
  38. },
  39. "devDependencies": {
  40. "bindings": "^1.5.0",
  41. "cross-env": "^7.0.3",
  42. "eslint": "^9.16.0",
  43. "mocha": "^11.0.1",
  44. "nan": "^2.14.2",
  45. "neostandard": "^0.11.9",
  46. "require-inject": "^1.4.4"
  47. },
  48. "scripts": {
  49. "lint": "eslint \"*/*.js\" \"test/**/*.js\" \".github/**/*.js\"",
  50. "test": "cross-env NODE_GYP_NULL_LOGGER=true mocha --timeout 15000 test/test-download.js test/test-*"
  51. }
  52. }