Logging/package.json
2019-05-14 11:35:30 -04:00

35 lines
781 B
JSON

{
"name": "@hibas123/logging",
"version": "2.0.6",
"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"
},
"repository": {
"type": "git",
"url": "https://git.stamm.me/OpenServer/Logging.git"
},
"author": "Fabian Stamm",
"license": "MIT",
"files": [
"src/",
"out/",
"tsconfig.json",
"readme.md"
],
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.19.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@hibas123/utils": "^2.1.0"
}
}