-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1003 Bytes
/
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
{
"name": "cli-block",
"version": "1.4.4",
"description": "Create nice looking CLI Blocks",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && jest",
"test:kitchensink": "node dist/test/kitchensink.js",
"dev": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/silvandiepen/cli-block.git"
},
"keywords": [
"Cli",
"Block",
"Logging"
],
"author": "Sil van Diepen",
"license": "MIT",
"bugs": {
"url": "https://github.com/silvandiepen/cli-block/issues"
},
"homepage": "https://github.com/silvandiepen/cli-block#readme",
"dependencies": {
"@sil/color": "^0.4.8",
"@sil/tools": "^0.1.15",
"cli-highlight": "^2.1.11",
"kleur": "^4.1.5",
"mono-str-width": "^1.0.1",
"window-size": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}