Logging/package.json

35 lines
782 B
JSON
Raw Normal View History

{
"name": "@hibas123/logging",
2019-04-05 13:26:26 +00:00
"version": "2.0.4",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
2019-04-02 23:55:04 +00:00
"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",
2019-04-05 13:05:35 +00:00
"files": [
"src/",
"out/",
"tsconfig.json",
"readme.md"
],
"devDependencies": {
2019-04-02 23:55:04 +00:00
"concurrently": "^4.1.0",
"nodemon": "^1.18.10",
2019-04-05 02:22:52 +00:00
"typescript": "^3.4.1"
},
"dependencies": {
2019-04-05 02:22:52 +00:00
"@hibas123/utils": "^2.0.5"
}
}