-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sd-journald",
"version": "0.4.0",
"description": "A portable library to log via the journald socket",
"main": "dist/sd-journald.js",
"types": "dist/sd-journald.d.ts",
"repository": "sargun/sd-journald",
"author": "Sargun Dhillon <sargun@sargun.me>",
"license": "GPL-3.0",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.15",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-jest": "^26.6.3",
"child_process": "^1.0.2",
"coveralls": "^3.1.0",
"eslint": "^7.14.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.1.2"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"esw": "esw . --ext .js,.jsx,.ts,.tsx --watch",
"fmt": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "rm -rf dist && yarn tsc --build tsconfig.prod.json && babel src/ --out-dir dist/ --extensions .ts,.js",
"test": "jest ./test --forceExit --coverage",
"doc": "rm -fr docs && typedoc --plugin typedoc-plugin-markdown --mode modules",
"preversion": "yarn run build && if [ -d docs ]; then git rm -fr docs; fi && yarn run doc && git add docs && git commit -m \"Updating docs\"",
"postversion": "git push --follow-tags && yarn publish . --new-version $npm_package_version"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"unix-dgram": "^2.0.4"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"dist/",
"types/"
],
"keywords": [
"journald",
"systemd",
"systemd-journald",
"logging",
"logs",
"structured logging",
"structured"
],
"bugs": {
"url": "https://github.com/sargun/sd-journald/issues"
}
}