-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "concolor",
"version": "1.1.1",
"author": "Vladyslav Dukhin <[email protected]>",
"description": "Console colors for strings templates in node.js",
"license": "MIT",
"keywords": [
"concolor",
"metarhia",
"color",
"colors",
"colour",
"console",
"terminal",
"ansi",
"esc",
"template",
"theme",
"style"
],
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/concolor.git"
},
"bugs": {
"url": "https://github.com/metarhia/concolor/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/metarhia",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"main": "concolor.js",
"types": "concolor.d.ts",
"files": [
"concolor.d.ts"
],
"scripts": {
"test": "npm run lint && npm run types && node ./test.js",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"engines": {
"node": "18 || 20 || 21 || 22 || 23"
},
"readmeFilename": "README.md",
"devDependencies": {
"@types/node": "^22.5.1",
"eslint": "^9.9.1",
"eslint-config-metarhia": "^9.0.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}