package.json 787 B

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