esm-logging/package.json
Rodney, Tiara ac80f642d2
chore: change package origin
basically I'm using GitHub as a frontend, but I use Bitbucket as my origin and
Bitbucket Pipelines as my CI services, because screw Microsoft, that's why. I
feel forced to use GitHub as everyone else is using it...
2025-04-25 17:20:16 +02:00

39 lines
1.3 KiB
JSON

{
"name": "administratrix/esm-logging",
"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://github.com/ByteB4rb1e/esm-logging.git"
},
"author": "Tiara Rodney",
"license": "UNLICENSED",
"main": "index.js",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.14",
"@types/yargs": "^17.0.33",
"benchmark": "^2.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.7",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "^5.7.3",
"yargs": "^17.7.2"
},
"scripts": {
"test": "jest",
"build": "npm run build:production",
"build:production": "tsc",
"build:debug": "tsc -p tsconfig.debug.json",
"watch": "npm run watch:debug",
"watch:debug": "npm run build:debug -- --watch",
"doc": "typedoc --entryPoints src/index.ts --html build/doc",
"mypublish": "ts-node -P tsconfig.node.json scripts/publish.ts",
"dist": "ts-node -P tsconfig.node.json scripts/pack.ts build/production dist"
}
}