package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "detect-libc",
  3. "version": "2.1.2",
  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=text --check-coverage --branches=100 ava test/unit.js",
  12. "changelog": "conventional-changelog -i CHANGELOG.md -s",
  13. "bench": "node benchmark/detect-libc",
  14. "bench:calls": "node benchmark/call-familySync.js && sleep 1 && node benchmark/call-isNonGlibcLinuxSync.js && sleep 1 && node benchmark/call-versionSync.js"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/lovell/detect-libc.git"
  19. },
  20. "keywords": [
  21. "libc",
  22. "glibc",
  23. "musl"
  24. ],
  25. "author": "Lovell Fuller <npm@lovell.info>",
  26. "contributors": [
  27. "Niklas Salmoukas <niklas@salmoukas.com>",
  28. "Vinícius Lourenço <vinyygamerlol@gmail.com>"
  29. ],
  30. "license": "Apache-2.0",
  31. "devDependencies": {
  32. "ava": "^2.4.0",
  33. "benchmark": "^2.1.4",
  34. "conventional-changelog-cli": "^5.0.0",
  35. "eslint-config-standard": "^13.0.1",
  36. "nyc": "^15.1.0",
  37. "proxyquire": "^2.1.3",
  38. "semistandard": "^14.2.3"
  39. },
  40. "engines": {
  41. "node": ">=8"
  42. },
  43. "types": "index.d.ts"
  44. }