UNPKG

jest-express

Version:
101 lines (100 loc) 3.16 kB
{ "name": "jest-express", "version": "1.12.0", "description": "jest mock", "main": "./lib/index.js", "types": "./lib/index.d.ts", "directories": { "test": "test" }, "scripts": { "clean": "rimraf lib coverage", "commit": "git-cz", "commitmsg": "opt --in commit-msg --exec \"commitlint -e $GIT_PARAMS\"", "contributors:add": "all-contributors add", "contributors:generate": "all-contributors generate", "coverage:report": "coveralls", "precommit": "lint-staged && opt --in pre-commit --exec \"npm run verify\"", "semantic-release": "semantic-release", "setup": "npm i -g npmvet david types-checker commitizen all-contributors-cli", "test": "jest --coverage", "test:ci": "jest --ci", "test:coverage:ci": "jest --ci --coverage --testResultsProcessor=\"jest-junit\"", "test:coverage:codecov": "codecov", "test:watch": "jest --watch", "ts:build": "tsc", "ts:watch": "tsc -w", "tslint": "tslint --config tslint.json \"src/**/*.ts\" \"test/**/*.ts\"", "tslint:ci": "tslint --config tslint.json --format junit --out reports/tslint/tslint-results.xml \"src/**/*.ts\" \"test/**/*.ts\"", "tslint:fix": "tslint --config tslint.json --fix \"src/**/*.ts\" \"test/**/*.ts\"", "verify": "npm run verify:npmvet && npm run verify:david && npm run verify:tscheck && npm run tslint && npm run test", "verify:offline": "npm run verify:npmvet && npm run tslint && npm run test", "verify:circleci": "circleci config validate", "verify:ci": "npm run verify:npmvet && npm run test:ci", "verify:david": "david", "verify:npmvet": "npmvet --renderer ci --strict", "verify:tscheck": "types-checker" }, "repository": { "type": "git", "url": "git+https://github.com/jameswlane/jest-express.git" }, "keywords": [ "jest", "mock", "express" ], "author": "James W. Lane <james.w.lane@mac.com>", "license": "MIT", "bugs": { "url": "https://github.com/jameswlane/jest-express/issues" }, "homepage": "https://github.com/jameswlane/jest-express#readme", "devDependencies": { "@commitlint/cli": "8.3.5", "@commitlint/config-conventional": "8.3.4", "@types/chance": "1.0.10", "@types/faker": "4.1.11", "@types/jest": "25.2.1", "@types/node": "13.11.1", "all-contributors-cli": "6.14.1", "babel-core": "6.26.3", "babel-jest": "25.3.0", "chance": "1.1.4", "codecov": "3.6.5", "commitizen": "4.0.4", "cz-conventional-changelog": "3.1.0", "faker": "4.1.0", "jest": "25.3.0", "jest-junit": "10.0.0", "lint-staged": "10.1.3", "opt-cli": "1.6.0", "rimraf": "3.0.2", "semantic-release": "17.0.6", "ts-jest": "25.4.0", "tslint": "6.1.1", "tslint-config-airbnb": "5.11.2", "typescript": "3.8.3" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "jest-junit": { "output": "./ts-test-results.xml" }, "greenkeeper": { "ignore": [ "@types/node" ] }, "david": { "ignore": [ "@types/node" ] }, "dependencies": { "jest-node-http": "1.0.0" } }