package.json 1.1 KB

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": "5.1.1",
  15. "installVersion": 9,
  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. "glob": "^7.1.4",
  27. "graceful-fs": "^4.2.2",
  28. "mkdirp": "^0.5.1",
  29. "nopt": "^4.0.1",
  30. "npmlog": "^4.1.2",
  31. "request": "^2.88.0",
  32. "rimraf": "^2.6.3",
  33. "semver": "^5.7.1",
  34. "tar": "^4.4.12",
  35. "which": "^1.3.1"
  36. },
  37. "engines": {
  38. "node": ">= 6.0.0"
  39. },
  40. "devDependencies": {
  41. "bindings": "^1.5.0",
  42. "nan": "^2.14.0",
  43. "require-inject": "^1.4.4",
  44. "standard": "^14.3.1",
  45. "tap": "~12.7.0"
  46. },
  47. "scripts": {
  48. "lint": "standard */*.js test/**/*.js",
  49. "test": "npm run lint && tap --timeout=120 test/test-*"
  50. }
  51. }