forked from kilianc/node-apiserver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 778 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 778 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
{
"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.1",
"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.1.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"
}
}