-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.9 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
{
"name": "logality",
"version": "3.1.3",
"main": "./app/export-wrapper",
"description": "Extensible JSON Logger",
"homepage": "https://github.com/thanpolas/logality",
"bugs": "https://github.com/thanpolas/logality/issues",
"author": {
"name": "Thanasis Polychronakis",
"email": "[email protected]"
},
"contributors": [
"Marius Balaj"
],
"repository": {
"type": "git",
"url": "https://github.com/thanpolas/logality"
},
"license": "ISC",
"engines": {
"node": ">=10.1.x"
},
"scripts": {
"test": "jest && eslint app test && codecov",
"release": "release-it --ci",
"release:minor": "release-it minor --ci",
"release:major": "release-it major --ci",
"eslint": "eslint app test"
},
"release-it": {
"github": {
"release": false
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./app/*.js",
"./app/**/*.js"
],
"coverageReporters": [
"html",
"json"
],
"roots": [
"./test/spec",
"./test/serializers"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended/all"
]
},
"dependencies": {
"chalk": "^4.1.2",
"codecov": "^3.8.3",
"json-format": "^1.0.1",
"lodash.assign": "^4.2.0",
"middlewarify": "^2.2.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"devDependencies": {
"@types/jest": "28.1.1",
"eslint": "8.17.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsdoc": "39.3.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-security": "1.5.0",
"jest": "28.1.1",
"jest-extended": "2.0.0",
"prettier": "2.6.2",
"release-it": "14.11.7",
"sinon": "14.0.0"
}
}