Skip to content

Commit 0d3fa68

Browse files
committed
fix: add information to package, update readme
This fix commit was made to cause a release.
1 parent 8e08fa0 commit 0d3fa68

File tree

2 files changed

+24
-7
lines changed

2 files changed

+24
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ In order to make use of the library, your Graylog instance needs to be configure
1111
### Yarn
1212

1313
```bash
14-
yarn add https://github.com/Navigraph/graylog-client.git
14+
yarn add @navigraph/graylog-client
1515
```
1616

1717
### NPM
1818

1919
```bash
20-
npm install https://github.com/Navigraph/graylog-client.git
20+
npm install @navigraph/graylog-client
2121
```
2222

2323
## Usage

package.json

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
2+
"name": "@navigraph/graylog-client",
3+
"author": "Malte Hallström <[email protected]>",
4+
"module": "dist/graylog-client.esm.js",
25
"version": "0.1.0",
6+
"license": "MIT",
37
"main": "dist/index.js",
48
"typings": "dist/index.d.ts",
59
"files": [
@@ -9,12 +13,26 @@
913
"engines": {
1014
"node": ">=10"
1115
},
16+
"keywords": [
17+
"graylog",
18+
"gelf",
19+
"logging",
20+
"client"
21+
],
22+
"repository": {
23+
"type": "git",
24+
"url": "https://github.com/Navigraph/graylog-client.git"
25+
},
26+
"bugs": {
27+
"url": "https://github.com/Navigraph/graylog-client/issues"
28+
},
1229
"scripts": {
1330
"start": "tsdx watch",
1431
"build": "tsdx build",
1532
"test": "tsdx test",
1633
"lint": "tsdx lint",
17-
"prepare": "tsdx build"
34+
"prepare": "tsdx build",
35+
"release": "standard-version"
1836
},
1937
"peerDependencies": {},
2038
"husky": {
@@ -28,14 +46,13 @@
2846
"singleQuote": true,
2947
"trailingComma": "es5"
3048
},
31-
"name": "graylog-client",
32-
"author": "Malte Hallström",
33-
"module": "dist/graylog-client.esm.js",
3449
"devDependencies": {
3550
"husky": "^7.0.1",
3651
"jest-fetch-mock": "^3.0.3",
52+
"standard-version": "^9.3.1",
3753
"tsdx": "^0.14.1",
3854
"tslib": "^2.3.0",
3955
"typescript": "^4.3.5"
40-
}
56+
},
57+
"dependencies": {}
4158
}

0 commit comments

Comments
 (0)