-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 929 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
36
{
"name": "@blabu.com/logger",
"version": "1.6.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "rm -rf ./build && tsc",
"prepublishOnly": "npm run build",
"test": "mocha \"./test/**/*.ts\"",
"lint": "tslint -c tslint.json --project tsconfig.json '*.ts'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/blabu-com/logger.git"
},
"author": "blabu",
"license": "ISC",
"bugs": {
"url": "https://github.com/blabu-com/logger/issues"
},
"homepage": "https://github.com/blabu-com/logger#readme",
"dependencies": {
"@sentry/node": "^5.18.1",
"bunyan": "^1.8.13"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/bunyan": "^1.8.6",
"@types/node": "^11.12.2",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "^3.9.5"
}
}