aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/detect-libc/package.json
diff options
context:
space:
mode:
authorpack <pack@packgekko.xyz>2026-08-09 10:37:07 +0000
committerpack <pack@packgekko.xyz>2026-08-09 10:37:07 +0000
commit55a4f1fc869e41aca748c63d3018f0448b1606e0 (patch)
treed132d1d01772b6d53faee3e63c534dea5706b78a /node_modules/detect-libc/package.json
downloadcrud-55a4f1fc869e41aca748c63d3018f0448b1606e0.tar.gz
first commit
Diffstat (limited to 'node_modules/detect-libc/package.json')
-rw-r--r--node_modules/detect-libc/package.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/node_modules/detect-libc/package.json b/node_modules/detect-libc/package.json
new file mode 100644
index 0000000..36d0f2b
--- /dev/null
+++ b/node_modules/detect-libc/package.json
@@ -0,0 +1,44 @@
+{
+ "name": "detect-libc",
+ "version": "2.1.2",
+ "description": "Node.js module to detect the C standard library (libc) implementation family and version",
+ "main": "lib/detect-libc.js",
+ "files": [
+ "lib/",
+ "index.d.ts"
+ ],
+ "scripts": {
+ "test": "semistandard && nyc --reporter=text --check-coverage --branches=100 ava test/unit.js",
+ "changelog": "conventional-changelog -i CHANGELOG.md -s",
+ "bench": "node benchmark/detect-libc",
+ "bench:calls": "node benchmark/call-familySync.js && sleep 1 && node benchmark/call-isNonGlibcLinuxSync.js && sleep 1 && node benchmark/call-versionSync.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/lovell/detect-libc.git"
+ },
+ "keywords": [
+ "libc",
+ "glibc",
+ "musl"
+ ],
+ "author": "Lovell Fuller <npm@lovell.info>",
+ "contributors": [
+ "Niklas Salmoukas <niklas@salmoukas.com>",
+ "Vinícius Lourenço <vinyygamerlol@gmail.com>"
+ ],
+ "license": "Apache-2.0",
+ "devDependencies": {
+ "ava": "^2.4.0",
+ "benchmark": "^2.1.4",
+ "conventional-changelog-cli": "^5.0.0",
+ "eslint-config-standard": "^13.0.1",
+ "nyc": "^15.1.0",
+ "proxyquire": "^2.1.3",
+ "semistandard": "^14.2.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "types": "index.d.ts"
+}