-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 746 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 746 Bytes
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
{
"name": "@dever23b/logger",
"version": "1.0.9",
"description": "TypeScript logging utility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npx tsc",
"test": "jest",
"pre-publish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dever23b/logger.git"
},
"author": "Tyler Devereaux",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dever23b/logger/issues"
},
"homepage": "https://github.com/dever23b/logger#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}