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": "10.0.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": "^10.3.10", 28 "graceful-fs": "^4.2.6", 29 "make-fetch-happen": "^13.0.0", 30 "nopt": "^7.0.0", 31 "proc-log": "^3.0.0", 32 "semver": "^7.3.5", 33 "tar": "^6.1.2", 34 "which": "^4.0.0" 35 }, 36 "engines": { 37 "node": "^16.14.0 || >=18.0.0" 38 }, 39 "devDependencies": { 40 "bindings": "^1.5.0", 41 "cross-env": "^7.0.3", 42 "mocha": "^10.2.0", 43 "nan": "^2.14.2", 44 "require-inject": "^1.4.4", 45 "standard": "^17.0.0" 46 }, 47 "scripts": { 48 "lint": "standard \"*/*.js\" \"test/**/*.js\" \".github/**/*.js\"", 49 "test": "cross-env NODE_GYP_NULL_LOGGER=true mocha --timeout 15000 test/test-download.js test/test-*" 50 } 51} 52