n8n/packages/node-dev/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2019-06-23 03:35:23 -07:00
{
"name": "n8n-node-dev",
2019-07-10 23:55:51 -07:00
"version": "0.2.0",
2019-06-23 03:35:23 -07:00
"description": "CLI to simplify n8n credentials/node development",
2019-06-23 08:55:43 -07:00
"license": "SEE LICENSE IN LICENSE.md",
2019-06-23 03:35:23 -07:00
"author": {
"name": "Jan Oberhauser",
"email": "jan@n8n.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n8n-io/n8n.git"
},
2019-06-23 03:35:23 -07:00
"main": "dist/src/index",
"types": "dist/src/index.d.ts",
"scripts": {
"dev": "npm run watch",
2019-06-23 03:35:23 -07:00
"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"
2019-06-23 03:35:23 -07:00
},
"dependencies": {
"change-case": "^3.1.0",
"inquirer": "^6.3.1",
"n8n-core": "^0.2.0",
"n8n-workflow": "^0.3.0",
2019-06-23 03:35:23 -07:00
"replace-in-file": "^4.1.0",
2019-06-24 01:28:18 -07:00
"typescript": "~3.5.2",
2019-06-23 03:35:23 -07:00
"vorpal": "^1.12.0"
}
}