-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
92 lines (92 loc) · 2.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "coralogix-logger",
"title": "Coralogix Node.js SDK",
"version": "1.1.31",
"description": "Node.js SDK to send your logs to Coralogix",
"homepage": "https://coralogix.com/",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Coralogix",
"email": "[email protected]",
"url": "https://coralogix.com/"
},
"engines": {
"node": ">=0.10.0"
},
"contributors": [
{
"name": "Yoni Farin",
"email": "[email protected]",
"url": "https://github.com/farin99"
},
{
"name": "Amnon Shahar",
"email": "[email protected]",
"url": "https://github.com/amnons77"
},
{
"name": "Eldar Aliiev",
"email": "[email protected]",
"url": "https://github.com/EldarAliiev"
}
],
"keywords": [
"coralogix",
"logs",
"sdk",
"javascript",
"typescript",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/coralogix/nodejs-coralogix-sdk.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/coralogix/nodejs-coralogix-sdk/issues"
},
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc -p src",
"lint": "tslint ./src/**.ts",
"build": "npm run clean; npm run compile",
"docs": "jsdoc -c conf.json -P package.json -R README.md -d docs ./dist/**",
"release": "npm run build; npm run docs",
"test": "nyc --reporter=lcov --reporter=text mocha --recursive",
"publicate": "npm run release; npm version patch; npm publish ",
"t": "tsc -p src ; node dist/tester.js",
"update-version": "node scripts/version-update.js"
},
"devDependencies": {
"@types/node": "^13.11.1",
"chai": "^4.1.2",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"tslint": "^5.20.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.3",
"form-data": "^2.5.0",
"json-stringify-safe": "5.0.1",
"object-sizeof": "1.1.1",
"proxy-from-env": "^1.1.0",
"rxjs": "^7.8.1"
},
"directories": {
"doc": "docs",
"lib": "dist",
"example": "examples",
"test": "test"
},
"files": [
"LICENSE",
"README.md",
"AUTHORS.rst",
"dist/"
]
}