⬆️ Update n8n core and workflow

This commit is contained in:
brianinoa 2022-06-14 15:35:59 +02:00
commit 1bb7f88a6e

View file

@ -1,70 +1,72 @@
{ {
"name": "n8n-nodes-starter", "name": "n8n-nodes-starter",
"version": "0.1.0", "version": "0.1.0",
"description": "Example starter module for custom n8n nodes.", "description": "Example starter module for custom n8n nodes.",
"keywords": ["n8n-community-node-package"], "keywords": [
"license": "SEE LICENSE IN LICENSE.md", "n8n-community-node-package"
"homepage": "https://n8n.io", ],
"author": { "license": "SEE LICENSE IN LICENSE.md",
"name": "Jan Oberhauser", "homepage": "https://n8n.io",
"email": "jan@n8n.io" "author": {
}, "name": "Jan Oberhauser",
"repository": { "email": "jan@n8n.io"
"type": "git", },
"url": "git+https://github.com/n8n-io/n8n-nodes-starter.git" "repository": {
}, "type": "git",
"main": "index.js", "url": "git+https://github.com/n8n-io/n8n-nodes-starter.git"
"scripts": { },
"dev": "npm run watch", "main": "index.js",
"build": "tsc && gulp", "scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json", "dev": "npm run watch",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json", "build": "tsc && gulp",
"nodelinter": "nodelinter", "lint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch", "lintfix": "tslint --fix -p tsconfig.json -c tslint.json",
"test": "jest" "nodelinter": "nodelinter",
}, "watch": "tsc --watch",
"files": [ "test": "jest"
"dist" },
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/ExampleCredentials.credentials.js"
], ],
"n8n": { "nodes": [
"credentials": [ "dist/nodes/ExampleNode/ExampleNode.node.js"
"dist/credentials/ExampleCredentials.credentials.js" ]
], },
"nodes": [ "devDependencies": {
"dist/nodes/ExampleNode/ExampleNode.node.js" "@types/express": "^4.17.6",
] "@types/jest": "^26.0.13",
"@types/node": "^14.17.27",
"@types/request-promise-native": "~1.0.15",
"gulp": "^4.0.0",
"jest": "^26.4.2",
"n8n-workflow": "~0.103.0",
"nodelinter": "^0.1.9",
"ts-jest": "^26.3.0",
"tslint": "^6.1.2",
"typescript": "~4.3.5"
},
"dependencies": {
"n8n-core": "~0.121.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}, },
"devDependencies": { "testURL": "http://localhost/",
"@types/express": "^4.17.6", "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"@types/jest": "^26.0.13", "testPathIgnorePatterns": [
"@types/node": "^14.17.27", "/dist/",
"@types/request-promise-native": "~1.0.15", "/node_modules/"
"gulp": "^4.0.0", ],
"jest": "^26.4.2", "moduleFileExtensions": [
"n8n-workflow": "~0.83.0", "ts",
"nodelinter": "^0.1.9", "tsx",
"ts-jest": "^26.3.0", "js",
"tslint": "^6.1.2", "json"
"typescript": "~4.3.5" ]
}, }
"dependencies": {
"n8n-core": "~0.101.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
} }