-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 913 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": "FDrest",
"version": "0.0.1",
"description": "Lightweight rest server, usable in node or in browser. Perfect for front-end devs.",
"main": "main.js",
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
},
"repository": "https://github.com/FairyDwarves/FDrest",
"bugs": {
"url": "https://github.com/FairyDwarves/FDrest/issues"
},
"author": "Asmodehn",
"scripts": {
"test": "make test",
"start": "node server/server.js"
},
"dependencies": {
"express": "3.3.6",
"body-parser": "^1.1.2",
"errorhandler": "^1.0.1",
"method-override": "^1.0.0",
"should": "3.1.2",
"superagent": "0.16.0",
"rest-tool-common": "0.4.2",
"mu2": "latest",
"mocha": "latest",
"jayschema": "0.2.x",
"js-yaml": "latest",
"request" : "*",
"http-proxy": "0.10.3",
"cors": "2.5.3"
},
"bin": {
"server": "./start.js"
}
}