-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (36 loc) · 753 Bytes
/
package.json
File metadata and controls
38 lines (36 loc) · 753 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
{
"name": "newsreader",
"description": "Consume News",
"version": "0.0.1",
"author": "Kyu Lee <smailq@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:smailq/newsreader.git"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"express": "3.x.x",
"coffee-script": "1.x.x",
"connect-assets": "2.x.x",
"stylus": "0.x.x",
"jade": "0.x.x",
"underscore": "1.x.x",
"nconf": "0.6.x",
"winston": "0.6.x",
"mongoose": "3.x.x",
"jsdom": "0.5.x",
"async": "0.2.x",
"pg": "1.x.x",
"node-uuid": "x.x.x"
},
"devDependencies": {
"mocha": "1.3.x",
"should": "1.1.x"
},
"scripts" : {
"test": "mocha test",
"start": "coffee web.coffee"
}
}