apimocker
Version:
Simple HTTP server that returns mock service API responses to your front end.
72 lines (71 loc) • 1.7 kB
JSON
{
"name": "apimocker",
"description": "Simple HTTP server that returns mock service API responses to your front end.",
"version": "1.1.6",
"engines": {
"node": ">=6.14.4",
"npm": ">=6.1.0"
},
"author": "Greg Stroup <gstroup@gmail.com>",
"dependencies": {
"body-parser": "1.20.1",
"chalk": "^2.4.2",
"commander": "2.11.0",
"express": "4.18.2",
"express-http-proxy": "1.6.3",
"express-xml-bodyparser": "0.3.0",
"jsonpath": "^1.1.1",
"multer": "^2.0.1",
"underscore": "^1.13.7",
"untildify": "3.0.3"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.31.0",
"grunt": "^1.6.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-cli": "^4.0.0",
"gruntify-eslint": "^5.0.0",
"mocha": "^5.2.0",
"sinon": "^7.5.0",
"supertest": "^3.4.2"
},
"main": "./lib/apimocker.js",
"bin": {
"apimocker": "./bin/apimocker.js"
},
"keywords": [
"express",
"mock",
"stub",
"REST",
"SOAP",
"testing",
"functional",
"api",
"grunt",
"gulp"
],
"repository": {
"type": "git",
"url": "https://github.com/gstroup/apimocker.git"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/gstroup/apimocker/issues"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test",
"samplemocks": "./samplemocks"
},
"scripts": {
"test": "eslint . && mocha test/*.js",
"start": "node bin/apimocker.js -c config.json",
"lint": "eslint ."
},
"license": "MIT"
}