Logging/package.json

36 lines
796 B
JSON
Raw Normal View History

{
"name": "@hibas123/logging",
2020-09-30 14:46:16 +00:00
"version": "2.6.0",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
2020-08-26 09:55:57 +00:00
"module": "esm/index.js",
"scripts": {
2020-08-26 09:55:57 +00:00
"prepublish": "npm run build",
"build": "tsc && tsc -p tsconfig.esm.json",
2020-04-15 17:51:15 +00:00
"dev": "nodemon -e ts --exec ts-node src/test.ts"
},
"repository": {
"type": "git",
"url": "https://git.stamm.me/OpenServer/Logging.git"
},
"author": "Fabian Stamm",
"license": "MIT",
2019-04-05 13:05:35 +00:00
"files": [
"src/",
"out/",
2020-08-26 09:55:57 +00:00
"esm/",
2019-04-05 13:05:35 +00:00
"tsconfig.json",
"readme.md"
],
"devDependencies": {
2020-08-26 09:55:57 +00:00
"concurrently": "^5.3.0",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
2020-09-30 14:46:16 +00:00
"typescript": "^4.0.3"
},
"dependencies": {
2020-08-26 09:55:57 +00:00
"@hibas123/utils": "^2.2.10"
}
2020-03-01 14:21:17 +00:00
}