1
0
mirror of https://git.stamm.me/OpenServer/NodeLogging.git synced 2024-11-14 22:41:04 +00:00
nodelogging/package.json
2021-05-08 22:43:46 +02:00

39 lines
923 B
JSON

{
"name": "@hibas123/nodelogging",
"version": "3.0.5",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"watch-ts": "tsc --watch",
"watch-js": "nodemon out/test.js",
"watch": "concurrently npm:watch-*",
"test": "npm run build && node out/test.js",
"live": "nodemon out/test.js"
},
"repository": {
"type": "git",
"url": "https://git.stamm.me/OpenServer/NodeLogging.git"
},
"author": "Fabian Stamm",
"license": "MIT",
"files": [
"src/",
"out/",
"tsconfig.json",
"readme.md"
],
"devDependencies": {
"@types/node": "^15.0.2",
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
},
"dependencies": {
"@hibas123/logging": "^3.0.5",
"@hibas123/utils": "^2.2.18"
}
}