Logging/package.json

35 lines
780 B
JSON
Raw Normal View History

{
"name": "@hibas123/logging",
2021-05-08 20:15:56 +00:00
"version": "3.0.1",
"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",
2021-05-08 19:47:00 +00:00
"test": "tsc && node out/test.js",
"postpublish": "denreg publish"
},
"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": {
2021-05-08 19:47:00 +00:00
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
2021-05-08 19:47:00 +00:00
"dependencies": {}
2020-03-01 14:21:17 +00:00
}