forked from gijs/dashku
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 2.02 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
{
"name" : "Dashku",
"description" : "Realtime dashboards and widgets built with HTML, CSS, and JavaScript",
"version" : "0.0.1",
"author" : "Anephenix <[email protected]> (http://anephenix.com)",
"contributors" : [
"Nick Niemeir <[email protected]> (http://nrn.io)",
"Stuart Quin (https://github.com/stuartquin)",
"Joe Passavanti <[email protected]>",
"Maxime Beauchemin (https://github.com/mistercrunch)"
],
"private" : true,
"engines" : { "node": ">= 0.10.0" },
"dependencies" : {
"bcrypt" : "0.7.7",
"connect-route" : "0.1.4",
"marked" : "latest",
"mongoose" : "3.8.8",
"nodemailer" : "latest",
"node-uuid" : "latest",
"options" : "latest",
"redis" : "latest",
"request" : "latest",
"socketstream" : "git://github.com/socketstream/socketstream.git",
"ss-coffee" : "0.1.x",
"ss-hogan" : "0.1.x",
"ss-jade" : "0.1.x",
"ss-stylus" : "0.1.x",
"underscore" : "latest"
},
"devDependencies" : {
"cucumber" : "latest",
"gently" : "latest",
"istanbul" : "0.2.4",
"mocha" : "1.17.1",
"selenium-launcher" : "latest",
"soda" : "latest",
"coveralls" : "2.0.16",
"mocha-lcov-reporter" : "0.0.1"
},
"scripts": {
"start" : "node app",
"test" : "NODE_ENV=test node_modules/.bin/mocha test/server/**/*",
"cover-test" : "NODE_ENV=test node_modules/.bin/istanbul cover node_modules/.bin/_mocha test/server/**/*",
"cover-cukes" : "NODE_ENV=cucumber node_modules/.bin/istanbul cover node_modules/.bin/cucumber.js",
"cuke" : "NODE_ENV=cucumber ./node_modules/.bin/cucumber.js",
"regenerateApiKeyDb" : "node lib/regenerateApiKeyDb",
"populateWidgetTemplates" : "node lib/populateWidgetTemplates.js",
"console" : "node repl"
}
}