package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@mapbox/node-pre-gyp",
  3. "description": "Node.js native addon binary install tool",
  4. "version": "1.0.5",
  5. "keywords": [
  6. "native",
  7. "addon",
  8. "module",
  9. "c",
  10. "c++",
  11. "bindings",
  12. "binary"
  13. ],
  14. "license": "BSD-3-Clause",
  15. "author": "Dane Springmeyer <dane@mapbox.com>",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/mapbox/node-pre-gyp.git"
  19. },
  20. "bin": "./bin/node-pre-gyp",
  21. "main": "./lib/node-pre-gyp.js",
  22. "dependencies": {
  23. "detect-libc": "^1.0.3",
  24. "https-proxy-agent": "^5.0.0",
  25. "make-dir": "^3.1.0",
  26. "node-fetch": "^2.6.1",
  27. "nopt": "^5.0.0",
  28. "npmlog": "^4.1.2",
  29. "rimraf": "^3.0.2",
  30. "semver": "^7.3.4",
  31. "tar": "^6.1.0"
  32. },
  33. "devDependencies": {
  34. "@mapbox/cloudfriend": "^4.6.0",
  35. "@mapbox/eslint-config-mapbox": "^3.0.0",
  36. "action-walk": "^2.2.0",
  37. "aws-sdk": "^2.840.0",
  38. "codecov": "^3.8.1",
  39. "eslint": "^7.18.0",
  40. "eslint-plugin-node": "^11.1.0",
  41. "mock-aws-s3": "^4.0.1",
  42. "nock": "^12.0.3",
  43. "node-addon-api": "^3.1.0",
  44. "nyc": "^15.1.0",
  45. "tape": "^5.2.2",
  46. "tar-fs": "^2.1.1"
  47. },
  48. "nyc": {
  49. "all": true,
  50. "skip-full": false,
  51. "exclude": [
  52. "test/**"
  53. ]
  54. },
  55. "scripts": {
  56. "coverage": "nyc --all --include index.js --include lib/ npm test",
  57. "upload-coverage": "nyc report --reporter json && codecov --clear --flags=unit --file=./coverage/coverage-final.json",
  58. "lint": "eslint bin/node-pre-gyp lib/*js lib/util/*js test/*js scripts/*js",
  59. "fix": "npm run lint -- --fix",
  60. "update-crosswalk": "node scripts/abi_crosswalk.js",
  61. "test": "tape test/*test.js"
  62. }
  63. }