-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "@harvve/tslog-influxdb-transport",
"version": "2.0.0",
"description": "Send logs to influxdb2 via telegraf without writing them to files.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "mocha --config .mocharc.js --exit",
"test:watch": "mocha --watch --config .mocharc.js",
"precoverage": "rimraf .nyc_output coverage",
"coverage": "nyc mocha --config .mocharc.js --exit",
"watch": "tsc -w",
"prebuild": "rimraf ./lib",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvve/tslog-influxdb-transport.git"
},
"keywords": [
"influxdb2",
"telegraf",
"tslog",
"transport",
"logger"
],
"author": "Michal Siemienowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvve/tslog-influxdb-transport/issues"
},
"homepage": "https://github.com/harvve/tslog-influxdb-transport#readme",
"volta": {
"node": "18.10.0",
"npm": "8.19.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslog": "^3.3.4",
"typescript": "^4.8.4"
}
}