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.
49 lines
1.1 KiB
49 lines
1.1 KiB
1 year ago
|
{
|
||
|
"name": "supports-hyperlinks",
|
||
|
"version": "2.2.0",
|
||
|
"description": "Detect if your terminal emulator supports hyperlinks",
|
||
|
"license": "MIT",
|
||
|
"repository": "jamestalmage/supports-hyperlinks",
|
||
|
"author": {
|
||
|
"name": "James Talmage",
|
||
|
"email": "james@talmage.io",
|
||
|
"url": "github.com/jamestalmage"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=8"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"prepublishOnly": "npm run create-types",
|
||
|
"test": "xo && nyc ava",
|
||
|
"create-types": "tsc index.js --allowJs --declaration --emitDeclarationOnly"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js",
|
||
|
"browser.js"
|
||
|
],
|
||
|
"browser": "browser.js",
|
||
|
"keywords": [
|
||
|
"link",
|
||
|
"terminal",
|
||
|
"hyperlink",
|
||
|
"cli"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"has-flag": "^4.0.0",
|
||
|
"supports-color": "^7.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"ava": "^2.2.0",
|
||
|
"codecov": "^3.5.0",
|
||
|
"nyc": "^14.1.1",
|
||
|
"typescript": "^3.7.2",
|
||
|
"xo": "^0.24.0"
|
||
|
},
|
||
|
"nyc": {
|
||
|
"reporter": [
|
||
|
"lcov",
|
||
|
"text"
|
||
|
]
|
||
|
}
|
||
|
}
|