-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 844 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 844 Bytes
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
{
"name": "mock-api-server",
"description": "Mock out your API server for testing.",
"homepage": "https://github.com/maitria/mock-api-server",
"license": "MIT",
"version": "0.4.6",
"main": "lib/index.js",
"bin": {
"mock-api-server": "bin/mock-api-server"
},
"dependencies": {
"async": "~0.2.9",
"clumber": "~0.3.0",
"express": "3.4.2",
"sync-request": "^3.0.1",
"underscore": "~1.4.4"
},
"devDependencies": {
"coffee-script": "^1.9.0",
"coffeelint": "^1.13.0",
"coffeelint-use-strict": "^1.0.0",
"mocha": "~1.11.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maitria/mock-api-server.git"
},
"engines": {
"node": ">=0.8"
},
"scripts": {
"build": "rm -rf lib && coffee -cbo lib src",
"test": "coffeelint src test && mocha"
}
}