UNPKG

reshuffle

Version:

Reshuffle is a fast, unopinionated, minimalist integration framework

79 lines (78 loc) 2.1 kB
{ "name": "reshuffle", "version": "1.0.9", "description": "Reshuffle is a fast, unopinionated, minimalist integration framework", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "rimraf dist && tsc", "build:watch": "rimraf dist && tsc -w", "lint": "eslint . --ext .ts,.js --fix", "prepare": "rimraf dist && tsc", "prepublishOnly": "rimraf dist && tsc", "test": "jest", "coverage": "jest test --coverage" }, "repository": { "type": "git", "url": "git+https://github.com/reshufflehq/reshuffle.git" }, "keywords": [ "integrations", "workflows", "enterprise", "reactive" ], "author": "Amir Shevat, Christophe Gachiniard, Nimo Naamani", "license": "MIT", "bugs": { "url": "https://github.com/reshufflehq/reshuffle/issues" }, "homepage": "https://github.com/reshufflehq/reshuffle#readme", "dependencies": { "@types/mssql": "^6.0.7", "@types/node-cron": "^2.0.3", "async-mutex": "^0.2.4", "express": "^4.17.1", "is-valid-path": "^0.1.1", "mssql": "^6.3.1", "nanoid": "^3.1.16", "node-cron": "^2.0.3", "node-fetch": "^2.6.1", "prettier": "^2.1.2", "reshuffle-base-connector": "0.0.11", "winston": "^3.3.3" }, "devDependencies": { "@types/express": "^4.17.9", "@types/is-valid-path": "^0.1.0", "@types/jest": "^26.0.15", "@types/node": "^14.14.7", "@types/node-fetch": "^2.5.7", "@types/nodemailer": "^6.4.0", "@types/supertest": "^2.0.10", "@typescript-eslint/eslint-plugin": "^4.7.0", "@typescript-eslint/parser": "^4.7.0", "eslint": "^7.13.0", "eslint-config-prettier": "^6.15.0", "eslint-plugin-prettier": "^3.1.4", "husky": "^4.3.0", "jest": "^26.6.3", "rimraf": "^3.0.2", "supertest": "^6.0.1", "ts-jest": "^26.4.4", "ts-node": "^9.0.0", "typescript": "^4.0.5" }, "husky": { "hooks": { "pre-commit": "npm run lint" } }, "jest": { "collectCoverageFrom": [ "src/**/*.{ts,tsx}", "!<rootDir>/node_modules/" ] } }