-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.96 KB
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
{
"name": "n8n-nodes-package-auditor",
"version": "0.1.0",
"description": "n8n community node and CLI auditor for n8n package metadata, CI, provenance, and documentation quality.",
"bin": {
"n8n-node-package-auditor": "dist/cli.js"
},
"files": [
"dist",
"scripts/smoke-n8n-docker.sh",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc -p tsconfig.json --noEmit",
"release": "npm run validate && npm publish --provenance",
"prepack": "npm run build",
"audit:prod": "npm audit --omit=dev --audit-level=critical",
"smoke:n8n:docker": "bash scripts/smoke-n8n-docker.sh",
"validate": "npm run lint && npm test && npm run build && npm run audit:prod && node dist/cli.js examples/healthy-package --format text && node dist/cli.js examples/healthy-package --format json > /tmp/n8n-node-package-auditor-report.json && node dist/cli.js examples/healthy-package --format markdown > /tmp/n8n-node-package-auditor-report.md"
},
"keywords": [
"n8n-community-node-package",
"n8n",
"community-node",
"audit",
"cli",
"npm",
"provenance"
],
"author": {
"name": "Naveen Fernando"
},
"license": "MIT",
"homepage": "https://github.com/NPFernando/n8n-node-package-auditor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/NPFernando/n8n-node-package-auditor.git"
},
"bugs": {
"url": "https://github.com/NPFernando/n8n-node-package-auditor/issues"
},
"publishConfig": {
"access": "public"
},
"n8n": {
"n8nNodesApiVersion": 1,
"strict": true,
"nodes": [
"dist/nodes/PackageAuditor/PackageAuditor.node.js"
]
},
"engines": {
"node": ">=22.14 <25",
"npm": ">=10"
},
"devDependencies": {
"@types/node": "^20.19.0",
"n8n-workflow": "^2.16.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}