-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "buildblink",
"version": "0.0.4",
"description": "an application to monitor continuous integration builds and notify you by a ThingM blink1 light.",
"author": "Brett Swift <[email protected]>",
"contributors": [
{
"name": "Brett Swift",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/brettswift/buildblink"
},
"homepage": "http://brettswift.github.io/BuildBlink",
"keywords": [
"continuous integration",
"ci",
"blink1",
"build",
"build light"
],
"bin": {
"buildblink": "./bin/buildblink.js"
},
"main": "./lib/buildblink",
"preferGlobal": "true",
"dependencies": {
"seq": "0.3.5",
"request": "2.9.x",
"sprintf": "0.1.0",
"express": "3.x",
"nconf": "0.6.x",
"colors": "*",
"node-blink1": "0.1.x",
"forever": "0.10.x",
"prettyjson": "0.12.x",
"moment": "2.5.x",
"sync-prompt": "0.2.x"
},
"noAnalyze": true,
"devDependencies": {
"nodeunit": "0.7.x",
"should": "0.6.x",
"mocha": "1.2.1",
"node-inspector": "0.1.10"
},
"bundleDependencies": [],
"licenses": [
{
"type": "MIT",
"url": "http://rem.mit-license.org"
}
],
"engine": {
"node": "0.10.x"
},
"scripts": {
"test": "make test",
"windowsTest": "node_modules\\.bin\\mocha -u tdd --reporter spec test\\"
}
}