reshuffle
Version:
Reshuffle is a fast, unopinionated, minimalist integration framework
63 lines (62 loc) • 1.67 kB
JSON
{
"name": "reshuffle",
"version": "0.9.14",
"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": "echo 'TBD'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reshufflehq/reshuffle.git"
},
"keywords": [
"integrations",
"workflows",
"enterprise",
"reactive"
],
"author": "Amir Shevat, Nimo Naamani",
"license": "MIT",
"bugs": {
"url": "https://github.com/reshufflehq/reshuffle/issues"
},
"homepage": "https://github.com/reshufflehq/reshuffle#readme",
"dependencies": {
"async-mutex": "^0.2.4",
"express": "^4.17.1",
"is-valid-path": "^0.1.1",
"nanoid": "^3.1.12",
"node-fetch": "^2.6.0",
"prettier": "^2.1.1",
"reshuffle-base-connector": "^0.0.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/is-valid-path": "^0.1.0",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}