-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.47 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
60
61
62
63
64
65
66
67
{
"name": "@therockstorm/graylog",
"description": "Tiny typed library to send compressed, chunked log messages to Graylog via GELF.",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "Rocky Warren",
"url": "https://www.rocky.dev"
},
"homepage": "https://github.com/therockstorm/graylog#readme",
"bugs": {
"url": "https://github.com/therockstorm/graylog/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/therockstorm/graylog.git"
},
"keywords": [
"aws-lambda",
"gelf",
"graylog",
"graylog2",
"log",
"logger",
"logging",
"tools",
"typescript",
"udp"
],
"files": [
"dist-*/"
],
"scripts": {
"build": "pika build",
"clean": "rm src/*.js src/*.map functional.js*; rm -rf pkg; mkdir -p pkg",
"format": "skripts format",
"lint": "skripts lint",
"publish": "pika publish",
"start": "tsc && node functional.js",
"test": "skripts test --passWithNoTests",
"version": "npm run build"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"eslint": "^7.4.0",
"husky": "^4.0.0",
"skripts": "0.8.2",
"typescript": "^4.0.2"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"husky": {
"hooks": {
"pre-commit": "skripts pre-commit"
}
}
}