-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
72 lines (72 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "apimocker",
"description": "Simple HTTP server that returns mock service API responses to your front end.",
"version": "1.1.5",
"engines": {
"node": ">=6.14.4",
"npm": ">=6.1.0"
},
"author": "Greg Stroup <[email protected]>",
"dependencies": {
"body-parser": "1.20.1",
"chalk": "^2.4.1",
"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": "^1.4.4",
"underscore": "^1.13.6",
"untildify": "3.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"grunt": "^1.0.4",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-cli": "^4.0.0",
"gruntify-eslint": "^5.0.0",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"sinon": "^7.1.1",
"supertest": "^3.3.0"
},
"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"
}