esm-logging/package.json
Rodney, Tiara d27f6c65c1
init: working state
compiler + test suite are fine. logging module started, I'd say about 50%
complete.
2025-04-25 16:12:52 +02:00

32 lines
933 B
JSON

{
"name": "eslib",
"version": "1.0.0",
"description": "port of Python standard library logging module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://about:blank"
},
"author": "Tiara Rodney",
"license": "UNLICENSED",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.14",
"benchmark": "^2.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.7",
"typescript": "^5.7.3"
},
"scripts": {
"test": "jest",
"build": "npm run build:production",
"build:production": "tsc",
"build:debug": "tsc -p tsconfig.debug.json",
"build:documentation": "typedoc --entryPoints src/index.ts --html build/documentation"
}
}