-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.79 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
57
58
59
{
"name": "@steffthestunt/hellog",
"version": "3.1.0",
"description": "Another logger for JS. This one offers a console.log-like API, with plugin-based extensibility, all that with 0 dependencies.",
"keywords": [
"log",
"logs",
"logger"
],
"homepage": "https://github.com/LMaxence/hellog",
"bugs": {
"url": "https://github.com/LMaxence/hellog/issues",
"email": "lecanu.maxence@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/LMaxence/hellog"
},
"license": "ISC",
"author": {
"name": "Maxence Lecanu",
"email": "lecanu.maxence@gmail.com",
"url": "https://github.com/LMaxence"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.ts"
],
"scripts": {
"build": "tsc",
"dev": "node --watch --import tsx ./lib/main.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"test": "NODE_NO_WARNINGS=1 node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter spec --test-reporter-destination=stdout --test-coverage-include \"lib/*.ts\" --test-coverage-exclude \"lib/*.spec.ts\" --import tsx lib/*.spec.ts"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"prettier": "^3.0.3",
"semantic-release": "^24.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"volta": {
"node": "22.12.0"
}
}