-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 3.54 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
{
"name": "eventdeck",
"version": "0.0.0",
"description": "eventdeck",
"main": "index.js",
"scripts": {
"start": "node server/index.js | bunyan",
"mon": "nodemon server/index.js --ignore client/ | bunyan",
"pretest": "touch client/css/app.css && echo \"module.exports={}\" >> client/js/templates.js",
"test": "./node_modules/.bin/lab server/test -l -m 4000 --verbose",
"test-cov": "lab server/test -c",
"lint": "standard | snazzy"
},
"standard": {
"ignore": [
"client/js/templates.js",
"client/js/ink-all.js",
"server/scripts/*"
]
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/sinfo/eventdeck.git"
},
"author": "Francisco Dias <[email protected]> (http://franciscodias.net/)",
"contributors": [
"João Antunes <[email protected]>",
"Diogo Pais <[email protected]>",
"Duarte Paiva <[email protected]>",
"Francisco Gonçalves <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sinfo/eventdeck/issues"
},
"homepage": "https://github.com/sinfo/eventdeck",
"dependencies": {
"ampersand-array-checkbox-view": "0.0.4",
"ampersand-array-input-view": "^3.0.3",
"ampersand-checkbox-view": "^2.0.2",
"ampersand-chosen-view": "https://github.com/sinfo/ampersand-chosen-view/tarball/master",
"ampersand-collection": "^1.3.17",
"ampersand-collection-single-request-mixin": "https://github.com/franciscocgoncalves/ampersand-collection-single-request-mixin/tarball/master",
"ampersand-date-view": "https://github.com/sinfo/ampersand-date-view/tarball/master",
"ampersand-dom": "^1.2.1",
"ampersand-form-view": "^2.4.0",
"ampersand-fullcalendar-view": "0.0.2",
"ampersand-infinite-scroll": "^0.1.0",
"ampersand-input-view": "^4.0.5",
"ampersand-io": "^0.4.2",
"ampersand-io-collection": "^0.1.6",
"ampersand-io-model": "^0.3.1",
"ampersand-model": "^4.1.0",
"ampersand-pagination-mixin": "^0.1.0",
"ampersand-pikaday-view": "0.0.1",
"ampersand-rest-collection": "^2.0.4",
"ampersand-router": "^1.0.7",
"ampersand-select-view": "https://github.com/sinfo/ampersand-select-view/tarball/master",
"ampersand-state": "^4.3.15",
"ampersand-subcollection": "^2.0.1",
"ampersand-view": "^7.4.2",
"ampersand-view-switcher": "^1.1.2",
"andlog": "^1.0.0",
"async": "^0.2.10",
"boom": "^2.5.1",
"bows": "^1.3.2",
"cookie-getter": "0.0.2",
"cron": "~1.0.4",
"domify": "^1.3.0",
"domready": "^1.0.5",
"emailjs": "~0.3.8",
"favicon-setter": "^0.1.1",
"handlebars": "^2.0.0",
"hapi": "^7.5.3",
"hapi-auth-cookie": "^1.4.2",
"hapi-swagger": "^0.4.2",
"hoek": "^2.9.0",
"icalendar": "^0.7.1",
"joi": "^4.9.0",
"jquery": "^2.1.1",
"lout": "^5.1.2",
"mailcomposer": "~0.2.12",
"mailgun-js": "git+https://github.com/sinfo/mailgun-js.git",
"markdown": "~0.5.0",
"marked": "^0.3.3",
"moment": "^2.8.4",
"mongoose": "^3.9.7",
"moonboots_hapi": "^3.0.2",
"pmx": "^0.3.20",
"rand-token": "~0.2.1",
"request": "^2.58.0",
"slug": "^0.7.1",
"socket.io": "^1.2.0",
"socket.io-client": "^1.2.0",
"stylizer": "^1.2.0",
"templatizer": "^1.5.2",
"underscore": "^1.6.0"
},
"devDependencies": {
"bunyan": "~1.2.1",
"bunyan-logentries": "~1.0.0",
"code": "~1.2.0",
"lab": "^6.2.0",
"nodemon": "^1.7.1",
"pre-commit": "^1.1.3",
"snazzy": "^4.0.0",
"standard": "^7.1.2"
}
}