-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "logger-ts-4",
"version": "1.4.0",
"description": "Write logs into a file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keyword": [
"logger",
"log",
"logs",
"logger-ts",
"logger-ts"
],
"homepage": "https://github.com/Lakmal98/Logger-TS",
"bugs": {
"url": "https://github.com/Lakmal98/Logger-TS/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Lakmal98/Logger-TS.git"
},
"author": {
"name": "Lakmal"
},
"scripts": {
"serve": "npm-run-all --parallel build-watch dev",
"build-watch": "tsc -w",
"dev": "nodemon --watch lib --exec \"node lib/index.js\"",
"build": "tsc -p tsconfig-build.json",
"prepublish": "npm run build",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"license": "MIT",
"private": false,
"dependencies": {
"@types/node": "^16.11.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12.0.0"
}
}