-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 KB
/
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
37
38
39
40
41
42
43
44
45
{
"name": "@medishn/logger",
"version": "2.0.1",
"description": "A simple logger",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "test",
"man": "dist"
},
"scripts": {
"test": "chmod +x ./scripts/test.sh && ./scripts/test.sh",
"test:unit:Console": "ts-node --transpile-only \"test/unit/transports/Console.spec.ts\"",
"test:unit:File": "ts-node --transpile-only \"test/unit/transports/File.spec.ts\"",
"test:integration": "ts-node --transpile-only \"test/integration/logger.spec.ts\"",
"test:e2e": "ts-node --transpile-only test/e2e/logger.spec.ts",
"benchmark": "ts-node benchmark/index.ts",
"benchmark:file": "ts-node benchmark/file.ts",
"benchmark:console": "ts-node benchmark/console.ts",
"clear": "rm -r logs/*.log.* & rm -r logs/*.log",
"build": "rm -r dist/* & tsc",
"chmode": "chmod +x ./scripts/release.sh",
"release": "npm run chmode && ./scripts/release.sh"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medishen/md-logger.git"
},
"keywords": ["logger", "gland"],
"author": "Mahdi",
"license": "MIT",
"bugs": {
"url": "https://github.com/medishen/md-logger/issues"
},
"homepage": "https://github.com/medishen/md-logger#readme",
"devDependencies": {
"@types/node": "^22.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}