NodeLogging/package.json

42 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2017-08-23 14:45:03 +00:00
{
2018-05-31 11:15:02 +00:00
"name": "@hibas123/nodelogging",
2023-10-14 14:54:53 +00:00
"packageManager": "yarn@3.6.4",
2023-11-22 20:47:24 +00:00
"version": "3.1.6",
2017-08-23 14:45:03 +00:00
"description": "",
"main": "out/index.js",
2017-08-24 14:02:06 +00:00
"types": "out/index.d.ts",
2023-11-22 20:47:24 +00:00
"module": "esm/index.js",
2017-08-23 14:45:03 +00:00
"scripts": {
2021-05-08 20:18:51 +00:00
"prepublish": "npm run build",
2023-10-14 14:54:53 +00:00
"build": "tsc && tsc -p tsconfig.esm.json",
2019-03-26 01:50:26 +00:00
"watch-ts": "tsc --watch",
"watch-js": "nodemon out/test.js",
"watch": "concurrently npm:watch-*",
2021-05-08 20:11:15 +00:00
"test": "npm run build && node out/test.js",
2021-05-19 11:13:48 +00:00
"benchmark": "npm run build && node out/benchmark.js",
"live": "nodemon out/test.js"
2017-08-23 14:45:03 +00:00
},
"repository": {
"type": "git",
2019-04-01 03:51:27 +00:00
"url": "https://git.stamm.me/OpenServer/NodeLogging.git"
2017-08-23 14:45:03 +00:00
},
"author": "Fabian Stamm",
"license": "MIT",
2019-04-05 13:06:05 +00:00
"files": [
"src/",
"out/",
2023-10-14 14:54:53 +00:00
"esm/",
2019-04-05 13:06:05 +00:00
"tsconfig.json",
"readme.md"
],
2017-08-23 14:45:03 +00:00
"devDependencies": {
2023-10-14 14:54:53 +00:00
"@types/node": "^20.8.6",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@hibas123/logging": "^3.1.2",
2021-05-08 20:11:15 +00:00
"@hibas123/utils": "^2.2.18"
2017-08-23 14:45:03 +00:00
}
2023-10-14 14:54:53 +00:00
}