Files
codeql-action/node_modules/slice-ansi/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
937 B
JSON
Raw Normal View History

{
2020-05-04 18:50:13 +01:00
"name": "slice-ansi",
2022-02-01 18:01:11 +00:00
"version": "5.0.0",
2020-05-04 18:50:13 +01:00
"description": "Slice a string with ANSI escape codes",
2020-05-12 12:11:25 +01:00
"license": "MIT",
2020-05-04 18:50:13 +01:00
"repository": "chalk/slice-ansi",
2022-02-01 18:01:11 +00:00
"funding": "https://github.com/chalk/slice-ansi?sponsor=1",
"type": "module",
"exports": "./index.js",
"engines": {
2022-02-01 18:01:11 +00:00
"node": ">=12"
},
2020-05-12 12:11:25 +01:00
"scripts": {
2020-05-04 18:50:13 +01:00
"test": "xo && ava"
2020-05-12 12:11:25 +01:00
},
"files": [
"index.js"
],
"keywords": [
2020-05-04 18:50:13 +01:00
"slice",
"string",
"ansi",
"styles",
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"tty",
"escape",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
2020-05-12 12:11:25 +01:00
"dependencies": {
2022-02-01 18:01:11 +00:00
"ansi-styles": "^6.0.0",
"is-fullwidth-code-point": "^4.0.0"
},
2020-05-12 12:11:25 +01:00
"devDependencies": {
2022-02-01 18:01:11 +00:00
"ava": "^3.15.0",
"chalk": "^4.1.0",
"random-item": "^4.0.0",
"strip-ansi": "^7.0.0",
"xo": "^0.38.2"
2020-05-12 12:11:25 +01:00
}
2022-02-24 17:03:29 +00:00
}