Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-09-04 12:45:01 +02:00

59 lines
1.2 KiB
JSON

{
"name": "gradient-string",
"description": "Beautiful color gradients in terminal output",
"version": "2.0.0",
"author": "Boris K",
"license": "MIT",
"main": "index.js",
"scripts": {
"built-in": "node examples/built-in.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"demo": "node examples/demo.js",
"fix": "xo --fix",
"test": "xo && nyc cross-env FORCE_COLOR=1 ava"
},
"dependencies": {
"chalk": "^4.1.2",
"tinygradient": "^1.1.5"
},
"devDependencies": {
"ava": "^3.15.0",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"nyc": "^15.1.0",
"xo": "0.23.0"
},
"files": [
"index.js"
],
"engines": {
"node": ">=10"
},
"repository": "bokub/gradient-string",
"homepage": "https://github.com/bokub/gradient-string",
"bugs": "https://github.com/bokub/gradient-string/issues",
"keywords": [
"cli",
"color",
"colors",
"colour",
"command-line",
"console",
"formatting",
"gradient",
"gradients",
"log",
"logging",
"shell",
"string",
"style",
"styles",
"terminal"
],
"ava": {
"require": [
"esm"
]
}
}