-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 982 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
{
"name": "logover",
"version": "2.0.0",
"description": "A blazingly brilliant logger for JavaScript applications",
"main": "lib/index.js",
"scripts": {
"prepub": "npm run build",
"build": "esbuild --tsconfig=tsconfig.json --platform=neutral --bundle --minify --outdir=lib src/index.ts && npx tsc",
"pub": "npm publish",
"test": "esbuild --tsconfig=tsconfig.json --platform=neutral --bundle --outdir=temp-test test/index.ts && node temp-test/index.js"
},
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ShaunSHamilton/logover.git"
},
"keywords": [
"log",
"js",
"nodejs",
"node"
],
"author": "Shaun Hamilton",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShaunSHamilton/logover/issues"
},
"homepage": "https://github.com/ShaunSHamilton/logover#readme",
"devDependencies": {
"esbuild": "^0.14.50",
"typescript": "^4.7.4"
},
"type": "module"
}