-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.33 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
{
"name": "http-mock-server",
"description": "Simple HTTP server that returns dynamic preconfigured responses to your front end.",
"version": "0.5.2",
"engines": {
"node": ">=0.10.0"
},
"author": "Abhijeet Ahuja",
"dependencies": {
"JSONPath": ">=0.10.0",
"body-parser": "~1.4.3",
"commander": ">=1",
"express": "~4.5",
"express-http-proxy": "0.6.0",
"express-xml-bodyparser": "^0.2.2",
"underscore": ">=1",
"untildify": "^2.0.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"chai": ">=1.5.0",
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.7.1",
"grunt-contrib-watch": ">=0.3.1",
"grunt-mocha-cli": "^2.1.0",
"mocha": ">=1.8.2",
"sinon": ">=1.6.0",
"supertest": "^1.2.0"
},
"main": "./lib/apimocker.js",
"bin": {
"apimocker": "./bin/apimocker.js"
},
"keywords": [
"express",
"mock",
"stub",
"REST",
"SOAP",
"testing",
"functional",
"api",
"grunt",
"gulp",
"dynamic"
],
"repository": {
"type": "git",
"url": "https://github.com/abhijeetahuja/http-mock-server"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test",
"samplemocks": "./samplemocks"
},
"scripts": {
"test": "mocha test/*.js",
"start": "node bin/apimocker.js -c config.json"
},
"license": "ISC"
}