This repository has been archived by the owner on Sep 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 1.91 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
{
"name": "guerilla",
"description": "A flexible distributed build/test server for mobile",
"author": "Kush Patel <[email protected]>",
"version": "1.0.0",
"license": "MIT",
"main": "./server.js",
"keywords": [
"mobile",
"continuous",
"integration",
"delivery",
"build",
"test",
"server"
],
"repository": {
"type": "git",
"url": "http://github.com/yahoo/guerilla.git"
},
"bugs": {
"url": "http://github.com/yahoo/guerilla/issues"
},
"scripts": {
"test": "TEST=1 ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- $(find tests -name '*.test.js')",
"lint": "./node_modules/.bin/jshint tests"
},
"dependencies": {
"async": "^1.0.0",
"body-parser": "^1.10.2",
"bootstrap": "^3.3.5",
"browserify-middleware": "^7.0.0",
"callsite": "^1.0.0",
"caminte": "^0.2.7",
"change-case": "^2.3.0",
"colors": "^1.1.2",
"cookie-parser": "^1.3.3",
"cron": "^1.0.6",
"ejs": "^2.2.3",
"express": "^4.11.1",
"fs-extra": "^0.22.1",
"git-rev": "^0.2.1",
"github": "^0.2.4",
"kue": "^0.10.4",
"less-middleware": "^2.0.1",
"moment": "^2.10.3",
"morgan": "^1.5.1",
"multer": "^1.0.1",
"node-uuid": "^1.4.3",
"nodemailer": "^1.4.0",
"plist": "^1.1.0",
"redis": "^2.4.2",
"redis-lock": "^0.1.0",
"request": "^2.51.0",
"serve-favicon": "^2.3.0",
"string-template": "^0.2.1",
"temp": "^0.8.3",
"underscore": "^1.8.3",
"yargs": "^3.15.0"
},
"engines": {
"node": ">=0.12"
},
"devDependencies": {
"chai": "^3.5.0",
"debug": "^2.2.0",
"glob": "^7.0.0",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"lodash": "^4.6.0",
"mocha": "^2.4.5",
"mockery": "^1.4.0",
"rewire": "^2.5.1",
"sinon": "^1.17.3"
},
"optionalDependencies": {
"deviceconsole": "^1.0.1",
"hiredis": "^0.4.1",
"ios-deploy": "^1.8.0"
}
}