-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (64 loc) · 1.71 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Curio",
"description": "Curio Web Server",
"version": "0.0.1",
"author": "Jonathan 'Tivs' Rainey <tivoli@nurfed.com>",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/Tivoli/curio.git"
},
"bugs": "https://github.com/Tivoli/curio/issues",
"contributors": "https://github.com/Tivoli/curio/graphs/contributors",
"scripts": {
"start": "coffee boot.coffee",
"test": "make test-all"
},
"main": "./boot.coffee",
"engines": {
"node": "~0.10.0"
},
"engineStrict": true,
"config": {
"blanket": {
"pattern": "//^((?!(node_modules|test)).)*$/",
"loader": "./node-loaders/coffee-script",
"data-cover-never": "node_modules"
},
"travis-cov": {
"threshold": 94
}
},
"dependencies": {
"express": "latest",
"cookie": "latest",
"bcrypt": "latest",
"coffee-script": "latest",
"connect-assets": "3.x",
"connect-mongo": "latest",
"mongodb": "latest",
"underscore": "latest",
"async": "latest",
"fleck": "latest",
"socket.io": "latest",
"request": "latest",
"consolidate": "latest",
"less": "latest",
"dustjs-linkedin": "latest",
"dustjs-helpers": "latest",
"bugsnag": "latest",
"json2mongo": "Tivoli/json2mongo",
"gm": "latest",
"marked": "latest",
"moment": "latest"
},
"devDependencies": {
"coffeelint": "latest",
"mocha": "latest",
"chai": "latest",
"nock": "latest",
"zombie": "latest",
"blanket": "latest",
"travis-cov": "latest"
}
}