UNPKG

nginx-testing

Version:

Support for integration/acceptance testing of nginx configuration.

87 lines (86 loc) 2.43 kB
{ "name": "nginx-testing", "version": "0.4.0", "description": "Support for integration/acceptance testing of nginx configuration.", "author": "Jakub Jirutka <jakub@jirutka.cz>", "license": "MIT", "homepage": "https://github.com/jirutka/nginx-testing", "bugs": "https://github.com/jirutka/nginx-testing/issues", "repository": { "type": "git", "url": "https://github.com/jirutka/nginx-testing.git" }, "keywords": [ "nginx", "njs", "testing", "test" ], "bin": { "start-nginx": "bin/start-nginx" }, "type": "commonjs", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "bin", "lib", "src" ], "//": "directories.test is needed for power-assert", "directories": { "test": "src" }, "scripts": { "build": "tsc -p tsconfig.build.json && rm -f lib/internal/*.d.ts*", "clean": "rm -rf coverage/ lib/ node_modules/.cache", "lint": "tsc --noEmit", "prepublishOnly": "yarn build && asciidoctor -b docbook -a npm-readme -a gh-branch=v$npm_package_version -o - README.adoc | pandoc -f docbook -t gfm --shift-heading-level-by 1 --wrap preserve -o README.md", "test": "nyc mocha" }, "engines": { "node": ">= 14.0.0" }, "dependencies": { "@logdna/tail-file": "^3.0.1", "execa": "^5.0.0", "get-port": "^5.1.1", "minimist": "^1.2.8", "nginx-binaries": "^0.7.0", "nginx-conf": "^2.1.0", "node-watch": "^0.7.3", "stream-buffers": "^3.0.2" }, "devDependencies": { "@types/debug": "~4.1.7", "@types/dedent": "~0.7.0", "@types/minimist": "~1.2.2", "@types/mocha": "~10.0.1", "@types/mocha-each": "~2.0.0", "@types/node": "~18.16.13", "@types/node-fetch": "~2.5.8", "@types/power-assert": "~1.5.8", "@types/proxyquire": "~1.3.28", "@types/stream-buffers": "~3.0.4", "@types/which": "~3.0.0", "anylogger": "~1.0.11", "anylogger-debug": "~1.0.3", "anylogger-loglevel": "~1.0.0", "debug": "~4.3.4", "dedent": "~0.7.0", "espower-typescript": "~10.0.1", "loglevel": "~1.8.1", "mocha": "~10.2.0", "mocha-each": "~2.0.1", "node-fetch": "~2.6.1", "nyc": "~15.1.0", "power-assert": "~1.6.1", "proxyquire": "~2.1.3", "source-map-support": "~0.5.21", "tiny-typed-emitter": "~2.1.0", "ts-mockito": "~2.6.1", "typescript": "~5.0.4", "wait-for-expect": "~3.0.2", "which": "~3.0.1" } }