-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.88 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.88 KB
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
{
"name": "@brainbits/node-logger-formatter-monolog",
"version": "2.5.0",
"description": "Logger for node projects",
"main": "dist/index.js",
"scripts": {
"build:watch": "npm run build -- --watch --source-maps",
"build": "babel src --out-dir ./dist --ignore test.js,setupTests.js,__mocks__/*",
"check:code-style": "eslint ./src",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"test": "jest"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"extends": [
"brainbits",
"brainbits-jest"
],
"env": {
"node": true,
"jest": true
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "coverage",
"roots": [
"<rootDir>/src/"
]
},
"repository": {
"type": "git",
"url": "git@github.com:brainbits/node-logger.git"
},
"keywords": [
"logger",
"winston",
"monolog"
],
"author": "Brainbits <moriarty@brainbits.net>",
"license": "MIT",
"dependencies": {
"date-fns": "^4.0.0",
"jest-get-type": "^29.4.3"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.4",
"eslint": "^8.3.0",
"eslint-config-brainbits": "^4.1.2",
"eslint-config-brainbits-jest": "^4.1.2",
"jest": "^29.6.2"
},
"publishConfig": {
"access": "public"
}
}