-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 862 Bytes
/
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
{
"name": "simplelog-decorator",
"version": "0.1.6",
"license": "MIT",
"type": "module",
"author": {
"email": "sheshi.mateo01@gmail.com",
"name": "Mateo Sheshi",
"url": "https://github.com/devsheva"
},
"repository": {
"type": "git",
"url": "https://github.com/devsheva/simplelog"
},
"main": "dist/logger.js",
"types": "dist/logger.d.ts",
"description": "A simple logging library",
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"nodejs",
"decorators"
],
"scripts": {
"start": "pnpm tsx src/index.ts",
"dev": "pnpm tsx watch src/index.ts",
"build": "tsc --build tsconfig.build.json",
"test": "vitest",
"coverage": "vitest run --coverage"
}
}