Merge pull request #14 from n8n-io/n8n-3879-n8n-nodes-starter-update-dependencies

Update Dependencies
This commit is contained in:
Omar Ajoue 2022-06-17 17:00:54 +02:00 committed by GitHub
commit d65ab9e9ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 74 additions and 68 deletions

View file

@ -1,70 +1,75 @@
{ {
"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.2",
"jest": "^26.4.2",
"n8n-workflow": "~0.104.0",
"nodelinter": "^0.1.9",
"ts-jest": "^26.3.0",
"tslint": "^6.1.2",
"typescript": "~4.3.5"
},
"dependencies": {
"n8n-core": "~0.122.1"
},
"overrides": {
"glob-parent": "5.1.2"
},
"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"
]
}
} }

View file

@ -18,7 +18,8 @@
"declaration": true, "declaration": true,
"outDir": "./dist/", "outDir": "./dist/",
"target": "es2017", "target": "es2017",
"sourceMap": true "sourceMap": true,
"esModuleInterop": true
}, },
"include": [ "include": [
"credentials/**/*", "credentials/**/*",
@ -30,4 +31,4 @@
"exclude": [ "exclude": [
"**/*.spec.ts" "**/*.spec.ts"
] ]
} }