-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "werelogs",
"engines": {
"node": ">=20"
},
"version": "8.2.2",
"description": "An efficient raw JSON logging library aimed at micro-services architectures.",
"main": "index.js",
"scripts": {
"gendoc": "jsdoc $(git ls-files 'lib/*.js') -d doc",
"lint": "eslint $(git ls-files '*.js')",
"lint_md": "markdownlint $(git ls-files '*.md')",
"test": "mocha tests/unit/",
"ft_test": "(npm pack && cp werelogs-*.tgz tests/functional && cd tests/functional && cp -R ../../node_modules/ node_modules/ && npm install werelogs-*.tgz && ./node_modules/.bin/mocha . multi-modules/ && rm -rf tests/functional/node_modules tests/functional/werelogs-*.tgz tests/functional/*lock*)",
"coverage": "nyc ./node_modules/.bin/_mocha tests/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scality/werelogs.git"
},
"keywords": [
"log",
"logs",
"logging",
"micro-service",
"library",
"JSON"
],
"author": "Giorgio Regni",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/werelogs/issues"
},
"homepage": "https://github.com/scality/werelogs#readme",
"dependencies": {
"fast-safe-stringify": "^2.1.1",
"safe-json-stringify": "^1.2.0"
},
"devDependencies": {
"eslint": "^9.9.1",
"eslint-config-scality": "git+https://github.com/scality/Guidelines#8.3.0",
"markdownlint-cli": "^0.41.0",
"mocha": "^10.7.3",
"nyc": "^17.0.0"
},
"resolutions": {
"braces": "^3.0.3",
"markdown-it": "^12.3.2",
"minimatch": "^3.0.5",
"minimist": "^1.2.6"
}
}