UNPKG

n8n-nodes-changed

Version:

n8n node to detect if something changed between the current execution and the previous one.

84 lines (83 loc) 1.98 kB
{ "name": "n8n-nodes-changed", "version": "0.2.0", "private": false, "description": "n8n node to detect if something changed between the current execution and the previous one.", "license": "MIT", "homepage": "https://github.com/naskio/n8n-nodes-changed", "author": { "name": "Mehdi Nassim KHODJA", "email": "contact@nask.io", "url": "https://nask.io" }, "repository": { "type": "git", "url": "git+https://github.com/naskio/n8n-nodes-changed.git" }, "keywords": [ "n8n", "nodemation", "nodes", "custom", "module", "development", "change detection", "has changed" ], "scripts": { "dev": "npm run watch", "build": "tsc && gulp", "lint": "tslint -p tsconfig.json -c tslint.json", "lintfix": "tslint --fix -p tsconfig.json -c tslint.json", "nodelinter": "nodelinter", "watch": "tsc --watch", "test": "jest", "coverage": "jest --coverage", "update": "npm-check-updates -u", "demo:build": "./demo/run_demo.sh false", "demo": "./demo/run_demo.sh" }, "files": [ "dist" ], "n8n": { "nodes": [ "dist/Changed.node.js" ] }, "devDependencies": { "@types/express": "^4.17.13", "@types/jest": "^27.4.1", "@types/node": "^17.0.21", "@types/request-promise-native": "~1.0.18", "gulp": "^4.0.2", "jest": "^27.5.1", "n8n-workflow": "~0.88.0", "nodelinter": "^0.1.19", "npm-check-updates": "^12.5.0", "ts-jest": "^27.1.3", "tslint": "^6.1.2", "typescript": "~4.5.5" }, "dependencies": { "n8n-core": "~0.106.0", "object-hash": "^3.0.0" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testURL": "http://localhost/", "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testPathIgnorePatterns": [ "/dist/", "/node_modules/" ], "moduleFileExtensions": [ "ts", "tsx", "js", "json" ] } }