-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 2.13 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "bunyan-bugsnag",
"version": "4.0.0",
"description": "A Bunyan stream for logging errors and warnings to Bugsnag",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "./index.d.ts",
"files": [
"es",
"lib",
"index.d.ts"
],
"author": "Marnus Weststrate <[email protected]>",
"keywords": [
"bunyan",
"bugsnag",
"logging"
],
"license": "MIT",
"homepage": "https://github.com/marnusw/bunyan-bugsnag",
"repository": {
"type": "git",
"url": "https://github.com/marnusw/bunyan-bugsnag.git"
},
"bugs": {
"url": "https://github.com/marnusw/bunyan-bugsnag/issues"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"build": "babel ./es --out-dir ./lib",
"prepublish": "npm run build"
},
"peerDependencies": {
"bunyan": ">=1.8.5"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@bugsnag/node": "^7.5.6",
"@types/node": "^14.14.20",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=6.17.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6.17.0"
}
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint"
],
"*.{js,md}": [
"prettier --write"
]
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"airbnb-base"
],
"rules": {
"semi": [
2,
"never"
],
"no-use-before-define": [
2,
{
"functions": false
}
],
"no-param-reassign": 0,
"no-plusplus": [
2,
{
"allowForLoopAfterthoughts": true
}
],
"prefer-object-spread": 0
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}