mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-14 23:01:04 +00:00
39 lines
897 B
JSON
39 lines
897 B
JSON
{
|
|
"name": "@hibas123/nodelogging",
|
|
"version": "2.1.2",
|
|
"description": "",
|
|
"main": "out/index.js",
|
|
"types": "out/index.d.ts",
|
|
"scripts": {
|
|
"prepublish": "tsc",
|
|
"build": "tsc",
|
|
"watch-ts": "tsc --watch",
|
|
"watch-js": "nodemon out/test.js",
|
|
"watch": "concurrently npm:watch-*",
|
|
"test": "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": "^12.12.8",
|
|
"concurrently": "^5.0.0",
|
|
"nodemon": "^1.19.4",
|
|
"typescript": "^3.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@hibas123/logging": "^2.1.2",
|
|
"@hibas123/utils": "^2.1.1"
|
|
}
|
|
}
|