package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@mapbox/node-pre-gyp",
  3. "description": "Node.js native addon binary install tool",
  4. "version": "1.0.9",
  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": "^2.0.0",
  24. "https-proxy-agent": "^5.0.0",
  25. "make-dir": "^3.1.0",
  26. "node-fetch": "^2.6.7",
  27. "nopt": "^5.0.0",
  28. "npmlog": "^5.0.1",
  29. "rimraf": "^3.0.2",
  30. "semver": "^7.3.5",
  31. "tar": "^6.1.11"
  32. },
  33. "devDependencies": {
  34. "@mapbox/cloudfriend": "^5.1.0",
  35. "@mapbox/eslint-config-mapbox": "^3.0.0",
  36. "aws-sdk": "^2.1087.0",
  37. "codecov": "^3.8.3",
  38. "eslint": "^7.32.0",
  39. "eslint-plugin-node": "^11.1.0",
  40. "mock-aws-s3": "^4.0.2",
  41. "nock": "^12.0.3",
  42. "node-addon-api": "^4.3.0",
  43. "nyc": "^15.1.0",
  44. "tape": "^5.5.2",
  45. "tar-fs": "^2.1.1"
  46. },
  47. "nyc": {
  48. "all": true,
  49. "skip-full": false,
  50. "exclude": [
  51. "test/**"
  52. ]
  53. },
  54. "scripts": {
  55. "coverage": "nyc --all --include index.js --include lib/ npm test",
  56. "upload-coverage": "nyc report --reporter json && codecov --clear --flags=unit --file=./coverage/coverage-final.json",
  57. "lint": "eslint bin/node-pre-gyp lib/*js lib/util/*js test/*js scripts/*js",
  58. "fix": "npm run lint -- --fix",
  59. "update-crosswalk": "node scripts/abi_crosswalk.js",
  60. "test": "tape test/*test.js"
  61. }
  62. }