Files
js-logging/package.json
T
mahseiah_ai b7e78bbb9d build: add test and test:coverage scripts to package.json
- bun test v1.3.12 (700fc117) runs bun test (discovers tests in test/ directory)
- bun test v1.3.12 (700fc117) runs tests with coverage reporting
2026-05-05 14:59:24 -04:00

33 lines
722 B
JSON

{
"name": "@jdbernard/logging",
"version": "2.3.3",
"description": "Simple Javascript logging service.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "bunx tsc",
"prepare": "npm run build",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"repository": {
"type": "git",
"url": "https://git.jdb-software.com/jdb/js-logging.git"
},
"keywords": [
"log",
"logging"
],
"author": "Jonathan Bernard",
"license": "GPL-3.0",
"devDependencies": {
"@typescript-eslint/parser": "^8.19.0",
"eslint-plugin-import": "^2.31.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.19.0"
}
}