forked from applieddataconsultants/node-slides
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 957 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 957 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
34
35
{
"name" : "node-slides",
"private" : true,
"version": "0.2.0",
"author": "Marc Harter <wavded@gmail.com>",
"description": "Sample socket.io slidedeck for talking about node.js",
"keywords": [ "socket.io", "intro to node", "slidedeck" ],
"homepage": "https://github.com/applieddataconsultants/node-slides",
"bugs": {
"url": "https://github.com/applieddataconsultants/node-slides/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/applieddataconsultants/node-slides.git"
},
"scripts": {
"start": "coffee app.coffee"
},
"main": "app",
"dependencies": {
"express": "2.5.2",
"connect-assets": "2.1.6",
"socket.io": "0.8.7",
"jade": "0.19.0",
"stylus": "0.21.2",
"nib": "0.3.1"
},
"devDependencies": {
"coffee-script": "1.2.0"
},
"licenses": "MIT",
"engines": {
"node": ">=0.6"
}
}