mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-15 02:01:04 +00:00
39 lines
923 B
JSON
39 lines
923 B
JSON
{
|
|
"name": "@hibas123/nodelogging",
|
|
"version": "3.1.0",
|
|
"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.1.0",
|
|
"@hibas123/utils": "^2.2.18"
|
|
}
|
|
}
|