UNPKG

n8n-nodes-data-validation

Version:

This n8n community node validates input data using JSON Schemas.

116 lines (115 loc) 3.25 kB
{ "name": "n8n-nodes-data-validation", "version": "1.0.1", "description": "", "keywords": [ "n8n-community-node-package" ], "main": "lib/index.js", "types": "lib/types.d.ts", "files": [ "lib", "assets" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [], "nodes": [ "lib/nodes/DataValidation/DataValidation.node.js" ] }, "engines": { "node": ">=14" }, "scripts": { "build": "npm run clean && gulp && tsc --project tsconfig.release.json && node scripts/bundle-declaration-references.js", "build:watch": "gulp && tsc --project tsconfig.watch.json --watch", "clean": "rimraf lib", "typecheck": "tsc --noEmit", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:cov:changed": "npm run test:cov -- --onlyChanged", "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --testTimeout=86400000", "test:debug:watch": "npm run test:debug -- --watch", "format": "prettier --write .", "lint": "eslint --ext .ts --max-warnings 0 .", "lint:fix": "eslint --ext .ts --max-warnings 0 --fix .", "integrity-check": "npm run typecheck && npm run lint && npm run test", "precommit": "lint-staged && npm run integrity-check", "update-all-dependencies": "npm-check-updates --upgrade && rimraf package-lock.json node_modules && npm install", "reset-repository": "git clean -Xdf", "prepare": "husky install", "pre-merge-commit": "npm install && npm run integrity-check" }, "author": "Bartolomeu Rodrigues", "license": "MIT", "publishConfig": { "access": "public" }, "dependencies": { "ajv": "^8.11.0" }, "devDependencies": { "@types/express": "^4.17.13", "@types/jest": "^27.4.1", "@types/request-promise-native": "^1.0.18", "@typescript-eslint/eslint-plugin": "^5.15.0", "@typescript-eslint/parser": "^5.15.0", "eslint": "^8.11.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-n8n-nodes-base": "^1.6.5", "eslint-plugin-node": "^11.1.0", "glob": "^7.2.0", "gulp": "^4.0.2", "husky": "^7.0.4", "jest": "^27.5.1", "lint-staged": "^12.3.7", "n8n-core": "^0.132.0", "n8n-workflow": "^0.114.0", "npm-check-updates": "^12.5.4", "prettier": "^2.6.0", "rimraf": "^3.0.2", "ts-jest": "^27.1.3", "typescript": "^4.6.2" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": ".", "testMatch": [ "**/*.spec.ts" ], "transform": { "^.+\\.ts$": "ts-jest" }, "globals": { "ts-jest": { "isolatedModules": true, "tsconfig": "tsconfig.json" } }, "testEnvironment": "node", "roots": [ "<rootDir>/src/" ], "moduleDirectories": [ "node_modules", "<rootDir>" ] }, "lint-staged": { "*.{js,jsx,json,ts,tsx,scss,sass,css,md,yml,yaml}": "prettier --write" }, "repository": { "type": "git", "url": "https://github.com/Bartmr/n8n-nodes-data-validation.git" }, "bugs": { "url": "https://github.com/Bartmr/n8n-nodes-data-validation/issues" }, "homepage": "https://github.com/Bartmr/n8n-nodes-data-validation" }