forked from indexzero/nodejs-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 892 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 892 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
{
"name": "nodejs-intro",
"description": "My introduction presentation to node.js along with sample code at various stages of building a simple RESTful web service with journey, cradle, winston, optimist, and http-console.",
"version": "0.1.2",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"repository": {
"type": "git",
"url": "http://github.com/indexzero/nodejs-intro.git"
},
"keywords": ["bookmarks", "webservice", "tutorial", "nodejs"],
"dependencies": {
"cradle": "0.5.x",
"journey": ">= 0.4.0-pre",
"http-console": "0.6.x",
"optimist": "0.2.x",
"winston": "0.5.x"
},
"devDependencies": {
"vows": "0.5.x",
"request": "2.x.x"
},
"scripts": {
"test": "vows --spec --isolate"
},
"bin": { "nodejs-intro": "./bin/server" },
"main": "./lib/03authentication/pinpoint",
"engines": { "node": ">= 0.4.0" }
}