forked from opinsys/example-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 981 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
36
37
{
"name" : "example-webapp"
, "version": "0.1.0"
, "author": "Esa-Matti Suuronen"
, "homepage": "https://github.com/opinsys/example-webapp"
, "description": "Example webapp using Coffeescript, Node.js and Backbone.js"
, "bugs": {
"url": "https://github.com/opinsys/example-webapp/issues/"
}
, "repository":
{ "type": "git"
, "url": "git://github.com/opinsys/example-webapp.git"
}
, "scripts": {
"test": "node_modules/.bin/mocha"
, "start": "node server.js"
}
, "main": "./lib/index"
, "dependencies": {
"coffee-script": ""
, "underscore": ""
, "async": ""
, "stylus": ""
, "nib": ""
, "express": ""
, "piler": ""
, "handlebars": ""
, "hbs": ""
, "socket.io": ""
}
, "devDependencies": {
"mocha": ""
, "expect.js": ""
, "supervisor": ""
, "node-inspector": ""
}
}