Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
787 B
36 lines
787 B
2 years ago
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|