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