-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "daslog",
"version": "0.4.3",
"description": "A cute, immutable, and unusually type safe logger.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepack": "npm run build",
"example": "node ./lib/index.example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paarthenon/daslog.git"
},
"keywords": [
"log",
"logs",
"console",
"logging",
"logger",
"loglevel",
"json",
"debug",
"file logger",
"console logger",
"custom"
],
"author": "Paarth",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/paarthenon/daslog/issues"
},
"homepage": "https://github.com/paarthenon/daslog#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.5.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/dateformat": "^3.0.1",
"dateformat": "^3.0.3",
"streamroller": "^2.2.4",
"ts-toolbelt": "^6.6.2",
"variant": "^1.1.0"
}
}