39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "@administratrix/esm-logging",
|
|
"version": "1.0.0",
|
|
"description": "port of Python standard library logging module",
|
|
"main": "lib/index.js",
|
|
"engines": {
|
|
"node": ">= 20.11.0"
|
|
},
|
|
"scripts": {
|
|
"build/debug": "tsc -p tsconfig.debug.json",
|
|
"build/release": "tsc",
|
|
"build/doc": "typedoc",
|
|
"dist": "ts-node -P tsconfig.node.json scripts/npm-pack.ts build/release dist",
|
|
"test-reports/unit": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ByteB4rb1e/esm-logging.git"
|
|
},
|
|
"author": "Tiara Rodney",
|
|
"license": "UNLICENSED",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.4",
|
|
"@types/jest": "^29.5.14",
|
|
"eslint": "^9.39.4",
|
|
"jest": "^29.7.0",
|
|
"jest-junit": "^16.0.0",
|
|
"ts-jest": "^29.3.2",
|
|
"ts-node": "^10.9.2",
|
|
"typedoc": "^0.28.3",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.57.0"
|
|
},
|
|
"overrides": {
|
|
"jest": {
|
|
"glob": "^11.0.1"
|
|
}
|
|
}
|
|
}
|