Logging/package.json

36 lines
853 B
JSON

{
"name": "@hibas123/logging",
"version": "4.0.1",
"description": "",
"type": "module",
"main": "esm/index.js",
"types": "esm/index.d.ts",
"module": "esm/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "tsc && node esm/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/",
"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"
}
}