-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1022 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
43
44
45
46
47
48
49
{
"name": "logoligi",
"version": "2.0.1",
"description": "Log stylishly in your terminal.",
"exports": "./index.js",
"scripts": {
"test": "mocha test.js",
"compile": "tsc",
"pretest": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baahkusi/logoligi.git"
},
"keywords": [
"cli",
"console",
"color",
"terminal",
"ansi",
"terminal-emulators",
"chalk",
"boxen",
"ora"
],
"author": {
"name": "Baah Kusi",
"email": "nanakbaahkusi@gmail.com",
"url": "https://baahkusi.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/baahkusi/logoligi/issues"
},
"homepage": "https://github.com/baahkusi/logoligi#readme",
"type": "module",
"dependencies": {
"boxen": "5.1.2",
"chalk": "^4",
"ora": "5.4.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.14.2",
"chai": "^4.3.7",
"mocha": "^10.2.0"
}
}