-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.55 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
{
"name": "@cobuildlab/pure-logger",
"version": "1.2.1",
"description": "A Simple logger for Typescript applications with Rollbar and Cloudwatch integration.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"eslint": "eslint --fix",
"build": "tsc"
},
"homepage": "https://github.com/cobuildlab/pure-logger",
"bugs": {
"url": "https://github.com/cobuildlab/pure-logger/issues"
},
"author": "Angel Lacret",
"license": "GPL-3.0",
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.14.9",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^16.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^32.3.3",
"husky": "7.0.1",
"jest": "^27.0.6",
"lint-staged": "11.1.2",
"prettier": "2.3.2",
"typescript": "4.3.5"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.67.0",
"@aws-sdk/url-parser-node": "^3.1.0",
"rollbar": "2.24.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/v2/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|node_modules)/"
],
"testRegex": [
".test.ts$",
".test.tsx$"
]
}
}