package.json 817 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "detect-libc",
  3. "version": "2.0.1",
  4. "description": "Node.js module to detect the C standard library (libc) implementation family and version",
  5. "main": "lib/detect-libc.js",
  6. "files": [
  7. "lib/",
  8. "index.d.ts"
  9. ],
  10. "scripts": {
  11. "test": "semistandard && nyc --reporter=lcov --check-coverage --branches=100 ava test/unit.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/lovell/detect-libc"
  16. },
  17. "keywords": [
  18. "libc",
  19. "glibc",
  20. "musl"
  21. ],
  22. "author": "Lovell Fuller <npm@lovell.info>",
  23. "contributors": [
  24. "Niklas Salmoukas <niklas@salmoukas.com>"
  25. ],
  26. "license": "Apache-2.0",
  27. "devDependencies": {
  28. "ava": "^2.4.0",
  29. "nyc": "^15.1.0",
  30. "proxyquire": "^2.1.3",
  31. "semistandard": "^14.2.3"
  32. },
  33. "engines": {
  34. "node": ">=8"
  35. }
  36. }