UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

77 lines (76 loc) 2.44 kB
{ "name": "caporal", "version": "1.4.0", "description": "A full-featured framework for building command line applications (cli) with node.js", "main": "index.js", "types": "index.d.ts", "scripts": { "lint": "./node_modules/.bin/eslint lib tests", "test": "./node_modules/mocha/bin/mocha --require ./tests/utils/bootstrap.js --full-trace --recursive -R mocha-unfunk-reporter tests/", "test-watch": "npm run lint && ./node_modules/mocha/bin/mocha --require ./tests/utils/bootstrap.js --full-trace --watch --recursive -R mocha-unfunk-reporter tests/", "coverage": "./node_modules/.bin/istanbul cover --include-all-sources true -x **/examples/**/* --print both ./node_modules/.bin/_mocha -- --require ./tests/utils/bootstrap.js -R spec --recursive tests/", "commit": "git-cz", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0", "commitmsg": "validate-commit-msg" }, "husky": { "hooks": { "pre-commit": "npm run lint && npm test", "pre-push": "npm run lint && npm test" } }, "engines": { "node": ">= 8" }, "homepage": "https://github.com/mattallty/Caporal.js", "keywords": [ "cli", "argument-parser", "command", "commander", "clap", "cli-app", "minimist", "optimist", "cli-table", "command line apps" ], "author": "Matthias ETIENNE <matthias@etienne.in> (https://github.com/mattallty)", "repository": "mattallty/Caporal.js", "license": "MIT", "devDependencies": { "codacy-coverage": "^3.0.0", "commitizen": "^4.0.3", "conventional-changelog-cli": "^1.2.0", "conventional-commits-detector": "^0.1.1", "conventional-github-releaser": "^1.1.3", "conventional-recommended-bump": "^0.3.0", "cz-conventional-changelog": "^1.2.0", "eslint": "^5.7.0", "husky": "^3.0.3", "istanbul": "^0.4.5", "json": "^9.0.4", "mocha": "^5.2.0", "mocha-unfunk-reporter": "^0.4.0", "should": "^11.2.0", "sinon": "^1.17.7", "trash": "^4.0.0", "validate-commit-msg": "^2.11.1" }, "dependencies": { "bluebird": "^3.4.7", "cli-table3": "^0.5.0", "colorette": "^1.0.1", "fast-levenshtein": "^2.0.6", "lodash": "^4.17.14", "micromist": "1.1.0", "prettyjson": "^1.2.1", "tabtab": "^2.2.2", "winston": "^2.3.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }