1
0
mirror of https://git.stamm.me/OpenServer/NodeLogging.git synced 2024-11-14 17:11:04 +00:00
nodelogging/package.json

32 lines
810 B
JSON
Raw Normal View History

2017-08-23 14:45:03 +00:00
{
2018-05-31 11:15:02 +00:00
"name": "@hibas123/nodelogging",
2019-04-02 23:59:29 +00:00
"version": "1.6.0",
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",
2017-08-23 14:45:03 +00:00
"scripts": {
2018-10-29 08:05:30 +00:00
"prepublish": "tsc",
2017-08-24 14:02:06 +00:00
"build": "tsc",
2019-03-26 01:50:26 +00:00
"watch-ts": "tsc --watch",
"watch-js": "nodemon out/test.js",
"watch": "concurrently npm:watch-*",
"test": "node out/test.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",
"devDependencies": {
2019-03-26 01:50:26 +00:00
"@types/node": "^11.11.7",
"concurrently": "^4.1.0",
"nodemon": "^1.17.4",
2019-03-26 01:50:26 +00:00
"typescript": "^3.3.4000"
},
"dependencies": {
2019-04-02 23:59:29 +00:00
"@hibas123/logging": "^1.1.0",
2019-03-26 01:50:26 +00:00
"@hibas123/utils": "^2.0.2"
2017-08-23 14:45:03 +00:00
}
2019-04-01 03:51:27 +00:00
}