-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
{
"devDependencies": {
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"name": "calime",
"version": "1.0.1",
"description": "A Node.js class for stylish console text with colors, gradients, and multiple text styles. Easy chaining for seamless styling.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.json",
"test": "jest",
"lint": "standard",
"release": "standard-version",
"release:first": "standard-version --skip.bump",
"release:soft": "standard-version --skip.bump --skip.commit --skip.tag"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williammanco/calime.git"
},
"keywords": [
"CLI",
"color",
"style",
"console",
"chalk"
],
"author": "William Manco",
"license": "MIT",
"bugs": {
"url": "https://github.com/williammanco/calime/issues"
},
"homepage": "https://github.com/williammanco/calime#readme"
}