-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "node-logger",
"version": "2.1.0",
"description": "Logger used by NTS in their Node applications, captures errors with Raven",
"main": "node-logger.js",
"scripts": {
"lintfix": "PATH=$(npm bin):$PATH eslint --config .eslintrc.json --fix --ext .js ./",
"test": "PATH=$(npm bin):$PATH eslint ./ && PATH=$(npm bin):$PATH SENTRY_DSN=https://1234:1234@sentry.io/4567 mocha --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/ntslive/node-logger.git"
},
"keywords": [
"node",
"logger",
"sentry"
],
"author": "Andi Studer <andi@ntslive.co.uk> (https://www.nts.live)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntslive/node-logger/issues"
},
"homepage": "https://github.com/ntslive/node-logger#readme",
"dependencies": {
"@sentry/node": "^6.19.7"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^4.19.1",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
}
}