-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.18 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "consofy",
"version": "1.0.29",
"description": "Simple custom console implementation. Output example: [ TITLE: ] Data...",
"main": "index.js",
"types": "./index.d.ts",
"typesVersions": {
"*": {
"*": [
"index.d.ts"
]
}
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"type": "module",
"bin": {
"consofyTest": "./test/test.js",
"generateCjs": "./generateCjs.js"
},
"scripts": {
"tempTest": "node test/tempTest.js",
"test": "node test/test.js"
},
"keywords": [
"console",
"log",
"info",
"warn",
"error",
"custom",
"color",
"custom console",
"customized console",
"custom log",
"custom info",
"custom warn",
"custom error",
"colored console",
"colored log",
"colored info",
"colored warn",
"colored error"
],
"author": "Luís Henrique de Almeida",
"license": "ISC",
"dependencies": {
"kleur": "^4.1.5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NaN-NaN-sempai/consofy.git"
}
}