-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.11 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "supports-hyperlinks",
"version": "3.1.0",
"description": "Detect if your terminal emulator supports hyperlinks",
"license": "MIT",
"repository": "jamestalmage/supports-hyperlinks",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "James Talmage",
"email": "james@talmage.io",
"url": "github.com/jamestalmage"
},
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=14.18"
},
"scripts": {
"prepublishOnly": "npm run create-types",
"test": "xo && nyc ava && tsc",
"create-types": "tsc --project declaration.tsconfig.json"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"browser": "browser.js",
"keywords": [
"link",
"terminal",
"hyperlink",
"cli"
],
"dependencies": {
"has-flag": "^4.0.0",
"supports-color": "^7.0.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/supports-color": "^8.1.1",
"ava": "^2.2.0",
"codecov": "^3.5.0",
"nyc": "^14.1.1",
"typescript": "^4.9.5",
"xo": "^0.24.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}