-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.15 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
{
"name": "holz",
"version": "1.2.0",
"description": "Holz: A fast, minimal TypeScript logger",
"main": "dist/index.js",
"scripts": {
"bench": "npm run build && node benchmark",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"build": "rimraf 'dist' && tsc -b",
"test": "ava"
},
"author": "Tony Wooster <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.27",
"@types/safe-json-stringify": "^1.1.1",
"ava": "^3.11.1",
"rimraf": "^3.0.2",
"testdouble": "^3.16.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"homepage": "https://github.com/twooster/holz#readme",
"bugs": {
"url": "https://github.com/twooster/holz/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/twooster/holz.git"
},
"dependencies": {
"safe-json-stringify": "^1.2.0"
},
"files": [
"dist"
],
"engines": {
"node": ">=6.4.0"
},
"keywords": [
"logger",
"typescript",
"fast"
],
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"typings": "dist/index.d.ts"
}