UNPKG

amiddy

Version:

Middleware server with high configurability for development

67 lines (66 loc) 2.04 kB
{ "name": "amiddy", "description": "Middleware server with high configurability for development", "repository": { "type": "git", "url": "https://github.com/pauldcomanici/oia" }, "license": "MIT", "private": false, "exports": "lib/index.js", "type": "module", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "author": "Paul Comanici <darkyndy@gmail.com>", "dependencies": { "chalk": "4.1.2", "express": "4.17.3", "http-proxy": "1.18.1", "lodash.merge": "4.6.2", "micromatch": "4.0.5", "mime-types": "2.1.35", "selfsigned": "2.0.1", "strip-json-comments": "3.1.1", "url": "0.11.0", "vhost": "3.0.2" }, "devDependencies": {}, "peerDependencies": {}, "bin": "./lib/index.js", "scripts": { "build": "npm run lint && npm run test-coverage && npm run compile && npm run test-e2e", "build-changelog": "node ../../scripts/changelog/index.js", "compile": "rimraf lib && babel src --out-dir lib", "compile-watch": "nodemon --watch ./src --exec \"npm run compile\"", "lint": "npm run lint-source && npm run lint-tests", "lint-source": "eslint ./src", "lint-tests": "eslint ./__tests__", "postinstall": "node ./scripts/postinstall.js || exit 0", "prepublishOnly": "npm run build", "snyk-test": "snyk test", "start": "nodemon lib/index.js --watch lib", "start-latest": "npm run compile && npm run start -- --debug", "test": "jest --config=./config/jest-ut.js --maxWorkers=50%", "test-coverage": "npm run test -- --coverage", "test-e2e": "echo \"Not available\"", "test-e2e-watch": "echo \"Not available\"", "test-watch": "npm run test -- --watch --maxWorkers=25%" }, "keywords": [ "middleware", "api", "dependencies", "dev-env" ], "files": [ "lib", "scripts" ], "bugs": { "url": "https://github.com/pauldcomanici/oia/issues" }, "homepage": "https://github.com/pauldcomanici/oia/tree/master/packages/amiddy", "version": "3.0.0", "snyk": true }