Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "detect-libc",
  3. "version": "2.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. "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. "bench": "node benchmark/detect-libc",
  13. "bench:calls": "node benchmark/call-familySync.js && sleep 1 && node benchmark/call-isNonGlibcLinuxSync.js && sleep 1 && node benchmark/call-versionSync.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/lovell/detect-libc"
  18. },
  19. "keywords": [
  20. "libc",
  21. "glibc",
  22. "musl"
  23. ],
  24. "author": "Lovell Fuller <npm@lovell.info>",
  25. "contributors": [
  26. "Niklas Salmoukas <niklas@salmoukas.com>",
  27. "Vinícius Lourenço <vinyygamerlol@gmail.com>"
  28. ],
  29. "license": "Apache-2.0",
  30. "devDependencies": {
  31. "ava": "^2.4.0",
  32. "benchmark": "^2.1.4",
  33. "nyc": "^15.1.0",
  34. "proxyquire": "^2.1.3",
  35. "semistandard": "^14.2.3"
  36. },
  37. "engines": {
  38. "node": ">=8"
  39. }
  40. }