-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "cli-style",
"version": "0.1.1",
"description": "A simple tool allows you to set styles to command line output more easier.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc --declaration",
"build:watch": "tsc --watch",
"test": "ts-node test/index.spec.ts",
"lint": "eslint src/**/*.ts --cache --ignore-path .eslintignore"
},
"repository": "git+https://github.com/LvChengbin/cli-style.git",
"keywords": [
"chalk",
"ansi",
"style",
"cli",
"command",
"console",
"color",
"output"
],
"author": "LvChengbin <lvchengbin59@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LvChengbin/cli-style/issues"
},
"homepage": "https://github.com/LvChengbin/cli-style#readme",
"dependencies": {
"chalk": "^4.1.0"
},
"devDependencies": {
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}