forked from gstroup/apimocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
{
"name": "apimocker",
"description": "Simple HTTP server that returns mock service API responses to your front end.",
"version": "0.4.15",
"engines": {
"node": ">=0.10.0"
},
"author": "Greg Stroup <[email protected]>",
"dependencies": {
"JSONPath": ">=0.10.0",
"body-parser": "~1.4.3",
"commander": ">=1",
"express": "~4.5",
"express-http-proxy": ">=0.7.0",
"express-xml-bodyparser": "^0.2.2",
"underscore": ">=1",
"untildify": "^2.0.0"
},
"devDependencies": {
"chai": ">=1.5.0",
"grunt": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"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"
],
"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": "mocha test/*.js",
"start": "node bin/apimocker.js -c config.json"
},
"license": "MIT"
}