generated from n8n-io/n8n-nodes-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@hapheus/n8n-nodes-pgp",
"version": "1.1.1",
"description": "n8n-nodes-pgp enables seamless integration of PGP encryption functionalities into n8n workflows. Create keys, encrypt, decrypt, sign, and verify messages effortlessly. Perfect for secure data handling in automated workflows.",
"keywords": [
"n8n-community-node-package",
"n8n-nodes",
"pgp",
"pretty-good-privacy",
"encryption",
"decryption",
"signing",
"verification",
"workflow",
"automation",
"security",
"integration",
"keys",
"cryptography"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Franz Haberfellner",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/hapheus/n8n-nodes-pgp.git"
},
"engines": {
"node": ">=18.10",
"pnpm": ">=9.1"
},
"packageManager": "[email protected]",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials tests --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "pnpm build && pnpm lint -c .eslintrc.prepublish.js nodes credentials package.json",
"test": "npx --node-options=\"--no-warnings\" jest --verbose",
"coverage": "npx --node-options=\"--no-warnings\" jest --coverage",
"test:watch": "npx --node-options=\"--no-warnings\" jest --watch",
"bump:patch": "./scripts/bump-and-publish.sh patch",
"bump:minor": "./scripts/bump-and-publish.sh minor",
"bump:major": "./scripts/bump-and-publish.sh major"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/PgpCredentialsApi.credentials.js"
],
"nodes": [
"dist/nodes/PgpNode/PgpNode.node.js"
]
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.3",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"n8n-workflow": "*",
"prettier": "^3.3.2",
"ts-jest": "^29.2.5",
"typescript": "^5.5.3"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"fflate": "^0.8.2",
"openpgp": "^5.11.2"
}
}