forked from felfel/logger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 980 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": "@hardcodet/logging-js",
"version": "2.1.1",
"description": "Opinionated logging for Typescript/Javascript",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"prepublish:npm": "yarn build",
"publish:npm": "yarn build && yarn publish --access public",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hardcodet/logging-js.git"
},
"keywords": [],
"author": "Philipp Sumi",
"license": "MIT",
"bugs": {
"url": "https://github.com/hardcodet/logging-js/issues"
},
"homepage": "https://github.com/hardcodet/logging-js#readme",
"devDependencies": {
"@types/node": "^13.13.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {}
}