-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 2.41 KB
/
package.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "tapline",
"version": "0.4.0",
"description": "A homebrew beer recipe API server backed by MongoDB",
"homepage": "https://github.com/homebrewing/tapline",
"main": "lib/main.js",
"bin": {
"tapline": "./bin/tapline.js"
},
"scripts": {
"prepublish": "grunt compile",
"start": "grunt",
"test": "grunt test",
"blanket": {
"pattern": [
"lib"
],
"data-cover-never": "node_modules"
}
},
"repository": {
"type": "git",
"url": "https://github.com/homebrewing/tapline"
},
"bugs": {
"url": "https://github.com/homebrewing/tapline/issues"
},
"keywords": [
"beer",
"wine",
"mead",
"homebrew",
"homebrewer",
"homebrewing",
"brew",
"brewer",
"brewing",
"malt",
"sugar",
"hops",
"yeast",
"spice",
"bacteria",
"sour",
"funky",
"ferment",
"fermentable",
"fermenting",
"fermentation",
"calculate",
"calculator",
"calculation",
"recipe",
"instructions",
"javascript",
"coffeescript",
"api",
"interface",
"storage",
"mongo",
"mongodb"
],
"author": {
"name": "Daniel G. Taylor",
"email": "[email protected]",
"url": "https://github.com/homebrewing"
},
"license": "MIT",
"dependencies": {
"brauhaus": "~1.1.0",
"brauhaus-beerxml": "~1.0.0",
"mongoose": "3.8.x",
"express": "~3.4.4",
"json-gate": "~0.8.21",
"optimist": "~0.6.0",
"winston": "~0.7.2",
"bcryptjs": "~0.7.10",
"passport-http-bearer": "~1.0.1",
"passport-http": "~0.2.2",
"passport": "~0.1.17",
"marked": "~0.2.9",
"jade": "~0.35",
"passport-local": "~0.1.6",
"lodash": "~2.4.0",
"gravatar": "~1.0.6",
"passport-facebook": "~1.0.1",
"passport-google-oauth": "~0.1.5",
"slug": "~0.4.0",
"connect-mongo": "~0.4.0",
"brauhaus-diff": "~1.0.0",
"fivebeans": "~1.0.3",
"async": "~0.2.9"
},
"optionalDependencies": {
"bcrypt": "~0.7.6"
},
"devDependencies": {
"coffee-script": ">=1.6 <2",
"coffeelint": "~1.0.2",
"mocha": ">=1.8 <2",
"supertest": "~0.8.2",
"sinon": "~1.7.3",
"grunt-contrib-coffee": "~0.7.0",
"grunt": "~0.4.1",
"grunt-external-daemon": "~1.1.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-coffeelint": "0.0.7",
"grunt-mocha-cov": "0.0.7",
"grunt-shell": "~0.6.1"
},
"engines": {
"node": ">=0.8"
}
}