forked from TIMBERings/mobe-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 965 Bytes
/
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
{
"name": "mobe-server",
"version": "0.1.1",
"description": "Point your application to mobe-server to mock out the back end. This is ideal for unit testing the front end of your application using a tool like Selenium.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"bin": {
"mobe": "./src/bin/mobe"
},
"engines": {
"node": ">=0.10.0 <5.0.0"
},
"bugs": {
"url" : "https://github.com/TIMBERings/mobe-server/issues",
"email" : "a.humerickhouse@gmail.com"
},
"repository": {
"type" : "git",
"url" : "https://github.com/TIMBERings/mobe-server.git"
},
"readmeFilename": "README.md",
"author": "Aaron Humerickhouse",
"license": "MIT",
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"log-util": "^1.1.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"mocha": "^2.3.3",
"should": "^7.1.0",
"supertest": "^1.1.0"
}
}