-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 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
{
"name": "nlogs",
"version": "2.5.0",
"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.1",
"@eslint/js": "9.23.0",
"@types/eslint__js": "9.14.0",
"@types/debug": "4.1.13",
"@types/jest": "29.5.14",
"eslint": "9.23.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-prettier": "5.2.5",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"nodemon": "3.1.14",
"prettier": "3.5.3",
"ts-jest": "29.3.1",
"typescript": "5.9.2",
"typescript-eslint": "8.59.3"
},
"dependencies": {
"@types/node": "24.2.0",
"@types/pretty-time": "1.1.5",
"debug": "4.4.3",
"pretty-time": "1.1.0"
}
}