-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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": "logerian",
"description": "Logerian is a quick and dirty logging utility.",
"version": "3.1.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"esnext": "src/index.ts",
"author": {
"name": "Kārlis Čerņavskis",
"email": "[email protected]",
"url": "https://cernavskis.dev/"
},
"private": false,
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git://github.com/SwanX1/logerian.git"
},
"bugs": "https://github.com/SwanX1/logerian/issues",
"keywords": [
"log",
"logger",
"logging",
"colored",
"color",
"coloured",
"colour"
],
"scripts": {
"build": "tsc",
"build:noemit": "tsc --noEmit",
"build:watch": "tsc -w",
"check": "npm run build:noemit && npm run format:check && npm run lint",
"docs": "typedoc --excludePrivate --name \"Logerian Documentation\" --logLevel Verbose src/index.ts",
"format": "prettier --config .prettierrc.json --write src *.json .*.json",
"format:check": "prettier --config .prettierrc.json --check src *.json .*.json",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "husky install"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"prettier": "^2.8.0",
"prettier-package-json": "^2.7.0",
"prettier-plugin-organize-imports": "^3.2.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
}
}