-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "mockable",
"description": "Quick and dirty API mocking for your client",
"version": "1.0.10",
"url": "https://github.com/ricardo-rossi/Mockable",
"keywords": [
"http", "api", "mock", "server", "rest", "restful", "json", "GET", "POST", "PUT", "DELETE", "PATCH"
],
"author": {
"name": "Ricardo Rossi",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jim Lavin",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ricardo-rossi/Mockable"
},
"main": "./lib/mockable.js",
"preferGlobal": "true",
"bin": {
"mockable": "./bin/cli.js"
},
"scripts": {
"test": "vows test/mockable-tests.js --spec"
},
"license": "MIT",
"dependencies": {
"node-static": "~0.7.4",
"optimist": ">=0.3.4"
},
"devDependencies": {
"request": "latest",
"vows": "latest"
},
"engines": {
"node": ">= 0.8"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/ricardo-rossi/Mockable/issues"
},
"homepage": "https://github.com/ricardo-rossi/Mockable"
}