{ "name": "n8n-node-dev", "version": "0.2.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", "oclif": { "commands": "./dist/commands", "bin": "n8n-node-dev" }, "scripts": { "dev": "npm run watch", "build": "tsc", "test": "jest", "tslint": "tslint -p tsconfig.json -c tslint.json", "watch": "tsc --watch" }, "bin": { "n8n-node-dev": "./bin/n8n-node-dev" }, "keywords": [ "development", "node", "helper", "n8n" ], "files": [ "bin", "dist" ], "devDependencies": { "@types/inquirer": "^6.5.0", "@types/node": "^10.10.1", "@types/vorpal": "^1.11.0", "tslint": "^5.17.0" }, "dependencies": { "@oclif/command": "^1.5.18", "@oclif/errors": "^1.2.2", "change-case": "^3.1.0", "inquirer": "^7.0.0", "n8n-core": "^0.2.0", "n8n-workflow": "^0.3.0", "replace-in-file": "^4.1.0", "typescript": "~3.5.2" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testURL": "http://localhost/", "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testPathIgnorePatterns": [ "/dist/", "/node_modules/" ], "moduleFileExtensions": [ "ts", "tsx", "js", "json", "node" ] } }