Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check warning on line 1 in package.json

View workflow job for this annotation

GitHub Actions / audit

Remove the leftover file "nodes/HaloPSA/HALO_Icon_Halo_PNG1K.svg:Zone.Identifier". Backup, editor, and test-artifact files should not be published with a community node
"name": "n8n-nodes-halopsacomplete",
"version": "5.4.2",
"description": "An n8n node to connect to HaloPSA API",
Expand All @@ -6,7 +6,7 @@
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "",

Check warning on line 9 in package.json

View workflow job for this annotation

GitHub Actions / audit

The "homepage" field must be a valid URL (e.g. "https://example.com")
"author": {
"name": "redanthrax",
"email": "red@4c.gg"
Expand All @@ -26,14 +26,14 @@
"main": "index.js",
"scripts": {
"audit:supply-chain": "node scripts/check-supply-chain.mjs",
"build": "pnpm exec rimraf dist && pnpm exec tsc && pnpm exec gulp build:icons",
"build": "pnpm exec rimraf dist/* && pnpm exec tsc && pnpm exec gulp build:icons",
"dev": "node scripts/n8n-dev.mjs",
"dev:external": "N8N_DEV_RELOAD=true N8N_SECURE_COOKIE=false node scripts/n8n-dev.mjs --external-n8n",
"watch": "pnpm exec tsc --watch",
"format": "pnpm exec prettier nodes credentials --write",
"lint": "pnpm exec eslint nodes credentials package.json",
"lintfix": "pnpm exec eslint nodes credentials package.json --fix",
"test": "pnpm exec tsc && node --test dist/test/*.test.js",
"test": "pnpm exec tsc && node --test dist/test/**/*.test.js",
"test:smoke": "node --env-file=.env scripts/smoke-tickets-getall.mjs",
"prepublishOnly": "pnpm run audit:supply-chain && pnpm run build && pnpm exec eslint -c eslint.config.prepublish.mjs nodes credentials package.json"
},
Expand Down
22 changes: 12 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ overrides:
lodash: '4.18.1'
uuid: '11.1.1'
minimatch: '10.2.5'
brace-expansion: '5.0.9'
nanoid: '3.3.17'
form-data: '4.0.6'
axios: '1.18.0'
# npm dist-tag stable; block 2.23+ beta-channel releases
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"declaration": true,
"sourceMap": true,
"skipLibCheck": true,
"rootDir": ".",
"outDir": "./dist/",
},
"include": [
Expand Down
Loading