Added basics for NPM Release

This commit is contained in:
Nicolai Ort 2020-12-13 09:30:29 +01:00
parent 20f716d134
commit d84f8fa991
2 changed files with 31 additions and 0 deletions

6
.npmignore Normal file
View File

@ -0,0 +1,6 @@
node_modules
.DS_Store
.vscode
*.lock
.drone.yml
.gitignore

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "@odit/lfk-client",
"description": "A lib to interact with https://git.odit.services/lfk/backend",
"version": "1.0.0",
"license": "CC-BY-NC-SA-4.0",
"main": "./dist/index.ts",
"scripts": {
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://git.odit.services/lfk/lib"
},
"keywords": [ "odit", "odit.services", "lfk" ],
"author": "ODIT.Services",
"files": [
"**/dist",
"package.json",
"README.md",
],
"bugs": {
"url": "https://git.odit.services/lfk/lib/issues"
},
"homepage": "https://git.odit.services/lfk/lib/"
}