package.json 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "node-gyp-build",
  3. "version": "4.8.4",
  4. "description": "Build tool and bindings loader for node-gyp that supports prebuilds",
  5. "main": "index.js",
  6. "imports": {
  7. "fs": {
  8. "bare": "builtin:fs",
  9. "default": "fs"
  10. },
  11. "path": {
  12. "bare": "builtin:path",
  13. "default": "path"
  14. },
  15. "os": {
  16. "bare": "builtin:os",
  17. "default": "os"
  18. }
  19. },
  20. "devDependencies": {
  21. "array-shuffle": "^1.0.1",
  22. "standard": "^14.0.0",
  23. "tape": "^5.0.0"
  24. },
  25. "scripts": {
  26. "test": "standard && node test"
  27. },
  28. "bin": {
  29. "node-gyp-build": "./bin.js",
  30. "node-gyp-build-optional": "./optional.js",
  31. "node-gyp-build-test": "./build-test.js"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/prebuild/node-gyp-build.git"
  36. },
  37. "author": "Mathias Buus (@mafintosh)",
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/prebuild/node-gyp-build/issues"
  41. },
  42. "homepage": "https://github.com/prebuild/node-gyp-build"
  43. }