UNPKG

tree-house

Version:

NodeJS utilities and handy helpers extending ExpressJS functionalities

83 lines (82 loc) 2.28 kB
{ "name": "tree-house", "version": "5.2.0", "description": "NodeJS utilities and handy helpers extending ExpressJS functionalities", "main": "build/index.js", "types": "build/index.d.ts", "scripts": { "clean": "rm -rf ./build/*", "build": "npm run clean && tsc", "start": "npm run build && node build/index.js", "lint": "tslint 'src/**/*.ts'", "test": "jest --forceExit", "test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.ts --forceExit", "test:watch": "jest --watchAll", "pretest": "npm run build", "prepare": "npm run build", "release": "node_modules/np/source/cli.js --no-cleanup", "git:clean": "git branch --merged | egrep -v \"(^\\*|master|staging|develop)\" | xargs git branch -d", "git:clean-remote": "git remote prune origin" }, "precommit": [ "lint", "build" ], "dependencies": { "@apidevtools/swagger-parser": "~10.0.3", "body-parser": "~1.19.1", "cors": "~2.8.5", "express": "~4.17.2", "express-rate-limit": "~5.5.1", "express-validation": "~3.0.8", "helmet": "~4.6.0", "https": "~1.0.0", "js-yaml": "~4.1.0", "openapi-types": "~10.0.0", "rate-limit-redis": "~2.1.0", "swagger-ui-express": "~4.3.0" }, "devDependencies": { "@types/cors": "~2.8.12", "@types/express": "~4.17.13", "@types/express-rate-limit": "~5.1.3", "@types/jest": "~27.0.3", "@types/js-yaml": "~4.0.5", "@types/redis": "~2.8.32", "@types/supertest": "~2.0.11", "@types/node": "~17.0.4", "coveralls": "~3.1.1", "jest": "~27.4.5", "joi": "~17.5.0", "np": "~7.6.0", "pre-commit": "~1.2.2", "redis-mock": "~0.56.3", "supertest": "~6.1.6", "ts-jest": "~27.1.2", "tslint": "~6.1.3", "tslint-config-airbnb": "~5.11.2", "typescript": "~4.5.4" }, "engines": { "node": ">=10.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/icapps/tree-house.git" }, "keywords": [ "NodeJS", "Treehouse", "API", "Secure", "Customisable" ], "license": "ISC", "bugs": { "url": "https://github.com/icapps/tree-house/issues" }, "homepage": "https://github.com/icapps/tree-house#readme", "directories": { "test": "tests" } }