-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "lipe",
"version": "0.3.4",
"description": "A Logging library utilizing pipes",
"typings": "lib/Types",
"packageManager": "[email protected]",
"homepage": "https://lipejs.com",
"exports": {
".": {
"types": "./lib/Types/index.d.ts",
"require": "./lib/CommonJS/index.js",
"import": "./lib/ES6/index.js"
},
"./defaults": {
"types": "./lib/Types/defaults.d.ts",
"require": "./lib/CommonJS/defaults.js",
"import": "./lib/ES6/defaults.js"
}
},
"scripts": {
"test": "jest",
"test:script": "node ./tests/test.js",
"clean": "rimraf lib coverage",
"build": "node ./util/CompileProject.mjs",
"postinstall": "node ./util/PostInstall.mjs",
"prepublish": "pnpm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/CEbbinghaus/Logger"
},
"keywords": [
"logging",
"logger",
"pipe",
"lightweight",
"expandable"
],
"author": "CEbbinghaus <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^28.1.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"rimraf": "^3.0.2",
"source-map": "0.8.0-beta.0",
"ts-jest": "^28.0.8",
"typescript": "4.5.2"
},
"optionalDependencies": {
"chalk": "^4.1.2",
"moment": "^2.30.1",
"timer": "github:CEbbinghaus/timer"
}
}