Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": "9.4.1",
  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. "glob": "^7.1.4",
  28. "graceful-fs": "^4.2.6",
  29. "make-fetch-happen": "^10.0.3",
  30. "nopt": "^6.0.0",
  31. "npmlog": "^6.0.0",
  32. "rimraf": "^3.0.2",
  33. "semver": "^7.3.5",
  34. "tar": "^6.1.2",
  35. "which": "^2.0.2"
  36. },
  37. "engines": {
  38. "node": "^12.13 || ^14.13 || >=16"
  39. },
  40. "devDependencies": {
  41. "bindings": "^1.5.0",
  42. "mocha": "^10.2.0",
  43. "nan": "^2.14.2",
  44. "require-inject": "^1.4.4",
  45. "standard": "^14.3.4"
  46. },
  47. "scripts": {
  48. "lint": "standard */*.js test/**/*.js",
  49. "test": "npm run lint && mocha --reporter=test/reporter.js test/test-download.js test/test-*"
  50. }
  51. }