mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "n8n-node-dev",
|
|
"version": "0.1.0",
|
|
"description": "CLI to simplify n8n credentials/node development",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"main": "dist/src/index",
|
|
"types": "dist/src/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"tslint": "tslint -p tsconfig.json -c tslint.json",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"bin": {
|
|
"n8n-node-dev": "./dist/index.js"
|
|
},
|
|
"keywords": [
|
|
"development",
|
|
"node",
|
|
"helper",
|
|
"n8n"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@types/inquirer": "^6.0.3",
|
|
"@types/node": "^10.10.1",
|
|
"@types/vorpal": "^1.11.0",
|
|
"tslint": "^5.11.0"
|
|
},
|
|
"dependencies": {
|
|
"change-case": "^3.1.0",
|
|
"inquirer": "^6.3.1",
|
|
"n8n-core": "^0.1.0",
|
|
"n8n-workflow": "^0.1.0",
|
|
"replace-in-file": "^4.1.0",
|
|
"typescript": "~3.3.0",
|
|
"vorpal": "^1.12.0"
|
|
}
|
|
}
|