-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "nlogs",
"version": "2.4.4",
"main": "dist/index.js",
"repository": "git@github.com:nerjs/nlogs.git",
"author": "nerjs <karifan.stap@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"clear": "rm -rf ./dist",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"start": "nodemon --enable-source-maps --trace-warnings ./dist",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"files": [
"dist/*"
],
"keywords": [
"logs",
"logger",
"console"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.20.0",
"@types/eslint__js": "8.42.3",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"eslint": "9.20.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"nodemon": "3.1.9",
"prettier": "3.5.2",
"ts-jest": "29.2.6",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1"
},
"dependencies": {
"@types/node": "22.13.5",
"@types/pretty-time": "1.1.5",
"debug": "4.4.0",
"pretty-time": "1.1.0"
}
}