2019-10-03 08:53:03 +02:00
|
|
|
{
|
2022-06-14 15:35:59 +02:00
|
|
|
"name": "n8n-nodes-starter",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "Example starter module for custom n8n nodes.",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"n8n-community-node-package"
|
|
|
|
|
],
|
2022-06-17 13:51:26 -07:00
|
|
|
"license": "MIT",
|
2022-06-14 15:35:59 +02:00
|
|
|
"homepage": "https://n8n.io",
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "Jan Oberhauser",
|
|
|
|
|
"email": "jan@n8n.io"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/n8n-io/n8n-nodes-starter.git"
|
|
|
|
|
},
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2022-06-27 11:52:17 +02:00
|
|
|
"build": "tsc && gulp build:icons",
|
2022-06-27 11:57:31 +02:00
|
|
|
"dev": "tsc --watch",
|
2022-06-27 11:45:26 +02:00
|
|
|
"format": "prettier nodes credentials --write",
|
2022-06-21 11:23:10 +02:00
|
|
|
"lint": "tslint -p tsconfig.json -c tslint.json && node_modules/eslint/bin/eslint.js ./nodes",
|
2022-06-27 11:57:31 +02:00
|
|
|
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && node_modules/eslint/bin/eslint.js --fix ./nodes"
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"n8n": {
|
|
|
|
|
"credentials": [
|
2022-06-14 19:52:28 +02:00
|
|
|
"dist/credentials/ExampleCredentials.credentials.js",
|
2022-06-14 21:29:18 +02:00
|
|
|
"dist/credentials/HttpBinApi.credentials.js"
|
2019-10-03 08:53:03 +02:00
|
|
|
],
|
2022-06-14 15:35:59 +02:00
|
|
|
"nodes": [
|
2022-06-14 19:52:28 +02:00
|
|
|
"dist/nodes/ExampleNode/ExampleNode.node.js",
|
|
|
|
|
"dist/nodes/HttpBin/HttpBin.node.js"
|
2022-06-14 15:35:59 +02:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/express": "^4.17.6",
|
|
|
|
|
"@types/request-promise-native": "~1.0.15",
|
2022-06-21 11:23:10 +02:00
|
|
|
"@typescript-eslint/parser": "^5.29.0",
|
|
|
|
|
"eslint-plugin-n8n-nodes-base": "^1.0.43",
|
2022-06-14 19:52:28 +02:00
|
|
|
"gulp": "^4.0.2",
|
2022-06-17 16:56:10 +02:00
|
|
|
"n8n-workflow": "~0.104.0",
|
2022-06-27 11:43:54 +02:00
|
|
|
"prettier": "^2.7.1",
|
2022-06-14 15:35:59 +02:00
|
|
|
"tslint": "^6.1.2",
|
2022-06-27 12:26:57 +02:00
|
|
|
"typescript": "~4.6.0"
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-06-17 16:56:10 +02:00
|
|
|
"n8n-core": "~0.122.1"
|
2022-06-14 15:35:59 +02:00
|
|
|
}
|
2019-10-03 08:53:03 +02:00
|
|
|
}
|