forked from kilianc/node-apiserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 801 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
39
{
"author": "Kilian Ciuffolo <me@nailik.org> (http://nailik.org)",
"name": "apiserver",
"description": "A ready to go, modular, JSON(P) API Server.",
"keywords": [
"api",
"server",
"rest",
"json",
"jsonp"
],
"version": "0.2.2",
"repository": {
"type": "git",
"url": "http://github.com/kilianc/node-apiserver.git"
},
"main": "./",
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= v0.6.x"
},
"dependencies": {
"json-transport": "0.1.x",
"apiserver-router": "0.2.x",
"buffered-request": "0.1.x",
"fnchain": "0.1.1",
"bufferjoiner": "0.1.x",
"formidable": "1.0.x",
"qs": "0.4.x",
"mime": "1.2.x"
},
"devDependencies": {
"mocha": "1.0.x",
"should": "0.6.1",
"request": "2.9.x"
}
}