feat(core): initial commit

This commit is contained in:
2018-01-25 00:38:07 +01:00
commit e46d15936a
20 changed files with 1035 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "elasticlog",
"version": "1.0.1",
"description": "log to elasticsearch in a kibana compatible format",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "",
"scripts": {
"test": "(npmts)",
"format": "(gitzone format)"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"qenv": "^1.1.7",
"tapbundle": "^1.0.13"
},
"dependencies": {
"@types/elasticsearch": "^5.0.19",
"elasticsearch": "^14.0.0",
"typings-global": "^1.0.16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}