init: working state

compiler + test suite are fine. logging module started, I'd say about 50%
complete.
This commit is contained in:
Rodney, Tiara 2025-04-25 15:56:20 +02:00
commit d27f6c65c1
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
11 changed files with 7500 additions and 0 deletions

32
package.json Normal file
View file

@ -0,0 +1,32 @@
{
"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"
}
}