58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "n8n-nodes-starter",
|
|
"version": "0.1.0",
|
|
"description": "Example starter module for custom n8n nodes.",
|
|
"keywords": [
|
|
"n8n-community-node-package"
|
|
],
|
|
"license": "MIT",
|
|
"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": {
|
|
"dev": "npm run watch",
|
|
"build": "tsc && gulp",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json && node_modules/eslint/bin/eslint.js ./nodes",
|
|
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && node_modules/eslint/bin/eslint.js --fix ./nodes",
|
|
"watch": "tsc --watch",
|
|
"test": "jest"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"n8n": {
|
|
"credentials": [
|
|
"dist/credentials/ExampleCredentials.credentials.js",
|
|
"dist/credentials/HttpBinApi.credentials.js"
|
|
],
|
|
"nodes": [
|
|
"dist/nodes/ExampleNode/ExampleNode.node.js",
|
|
"dist/nodes/HttpBin/HttpBin.node.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.6",
|
|
"@types/request-promise-native": "~1.0.15",
|
|
"@typescript-eslint/parser": "^5.29.0",
|
|
"eslint-plugin-n8n-nodes-base": "^1.0.43",
|
|
"gulp": "^4.0.2",
|
|
"jest": "^26.4.2",
|
|
"n8n-workflow": "~0.104.0",
|
|
"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"
|
|
}
|
|
}
|