Skip to content

Commit

Permalink
chore: update .npmignore and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ehrdi committed Aug 9, 2024
1 parent f5c2faa commit 7c96b0f
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
src
node_modules
coverage
example-app

temp
images

.github
.vscode
.idea
*.iml

.DS_Store
Thumbs.db

vitest.config.ts
tsconfig.json
sonar-project.properties
prepare_release.sh
lefthook.yml
eslint.config.mjs
.prettierrc
commitlint.config.js
.husky

*.tar.gz
*.tgz
23 changes: 19 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
"name": "pcp-server-nodejs-sdk",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
Expand All @@ -12,11 +16,22 @@
"format:check": "prettier --check \"src/**/!(*.d).ts\"",
"format:write": "prettier --write \"src/**/!(*.d).ts\"",
"test": "vitest",
"coverage": "vitest run --coverage"
"coverage": "vitest run --coverage",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"keywords": [],
"author": "",
"keywords": [
"payone",
"server",
"node",
"sdk"
],
"license": "MIT",
"author": "PAYONE-GmbH",
"homepage": "https://github.com/PAYONE-GmbH/PCP-server-nodeJS-SDK",
"repository": {
"type": "git",
"url": "https://github.com/PAYONE-GmbH/PCP-server-nodeJS-SDK.git"
},
"devDependencies": {
"@eslint/js": "9.8.0",
"@types/node": "22.1.0",
Expand Down

0 comments on commit 7c96b0f

Please sign in to comment.