-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "@dexare/logger",
"version": "1.0.2",
"description": "A Dexare module that provides colorful logging",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Snazzah",
"license": "MIT",
"repository": "https://github.com/Dexare/logger",
"bugs": {
"url": "https://github.com/Dexare/logger/issues"
},
"funding": {
"url": "https://github.com/sponsors/Snazzah"
},
"keywords": [
"dexare",
"dexare-module"
],
"scripts": {
"build": "npx rimraf lib && npx tsc",
"build:prepare": "npx shx test -d ./lib || npm run build",
"changelog": "ts-node scripts/changelog",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"test": "mocha -r ts-node/register --extension ts",
"prepare": "npx husky install && npm run build:prepare",
"prepublishOnly": "(npx shx test -d ./lib || (echo \"lib folder does not exist\" && exit 1)) && npm run lint:fix"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"dependencies": {
"chalk": "4",
"dayjs": "^1.10.7",
"dexare": "^3.0.0",
"winston": "^3.5.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"yarn": "^1.22.10"
}
}