generated from lublak/n8n-nodes-base
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.09 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
{
"name": "n8n-nodes-text-manipulation",
"version": "1.4.0",
"description": "This node allows to modify texts.",
"keywords": [
"n8n-community-node-package"
],
"main": "index.js",
"scripts": {
"lint": "eslint nodes credentials package.json --no-error-on-unmatched-pattern",
"lint:fix": "eslint nodes credentials package.json --no-error-on-unmatched-pattern --fix",
"build": "tsc && gulp build:icons",
"prepare": "npm run build",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"tsc": "tsc"
},
"prettier": "eslint-config-n8n-nodes-base/prettierrc",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": [
"dist/nodes/TextManipulation/TextManipulation.node.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lublak/n8n-nodes-text-manipulation.git"
},
"author": {
"name": "lublak"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lublak/n8n-nodes-text-manipulation/issues"
},
"homepage": "https://github.com/lublak/n8n-nodes-text-manipulation#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.6.3",
"@types/request-promise-native": "^1.0.18",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.22.0",
"eslint-config-n8n-nodes-base": "^1.1.3",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-eslint-plugin": "^5.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.4",
"eslint-plugin-n8n-nodes-base": "^1.9.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gulp": "^4.0.2",
"n8n-core": "^0.134.0",
"n8n-workflow": "^0.116.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.3.38",
"typescript": "^4.7.4"
},
"dependencies": {
"entities": "^4.5.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"string-strip-html": "^13.4.8"
}
}