-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 997 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
{
"name": "simple-txt-logger",
"version": "1.0.7",
"description": "simple-txt-logger",
"homepage": "https://github.com/tberey/simple-txt-logger#readme",
"repository": {
"type": "git",
"url": "https://github.com/tberey/simple-txt-logger"
},
"main": "build/SimpleTxtLogger.js",
"types": "build/SimpleTxtLogger.d.ts",
"files": ["build"],
"scripts": {
"setup": "npm update && npm install",
"build": "tsc",
"start": "node build/SimpleTxtLogger.js",
"lint": "eslint . --ext .ts"
},
"keywords": ["logging", "logger", "log", "logs", "txt", "simple", "text", "light", "easy", "lightweight"],
"author": "Tom Berey <[email protected]> (https://github.com/tberey)",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@types/node": "latest",
"ts-node": "latest",
"typescript": "latest",
"eslint": "latest"
},
"dependencies": {
"fs": "latest"
}
}