-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "@vexera/log",
"version": "1.0.7",
"description": "Graylog logger",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "NODE_ENV=test tslint 'src/**/*.ts?(x)'",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm audit && npm test && npm run build",
"preversion": "npm audit && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/Vexera/log.git"
},
"files": [
"lib/**/*",
"typings/*",
"LICENSE.txt"
],
"author": "Zoddo <discord-bots@zoddo.fr>",
"license": "GPL-3.0-or-later",
"dependencies": {
"gelf-pro": "^1.3.12",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.3",
"@vexera/tslint-config": "^1.0.0",
"tslint": "^6.1.3",
"typescript": "^5.7.2"
}
}