n8n/packages/node-dev/package.json
2019-07-11 07:30:01 +02:00

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.md",
"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.17.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.5.2",
"vorpal": "^1.12.0"
}
}