Logging/package.json
2021-05-19 11:41:14 +02:00

37 lines
875 B
JSON

{
"name": "@hibas123/logging",
"version": "3.1.2",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
"module": "esm/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "tsc && node out/test.js",
"postpublish": "denreg publish",
"bench": "tsc && node benchmark.js",
"prof": "tsc && ndb --prof benchmark.js"
},
"repository": {
"type": "git",
"url": "https://git.stamm.me/OpenServer/Logging.git"
},
"author": "Fabian Stamm",
"license": "MIT",
"files": [
"src/",
"out/",
"esm/",
"tsconfig.json",
"readme.md"
],
"devDependencies": {
"concurrently": "^6.0.2",
"ndb": "^1.1.5",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}