-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
{
"name": "whiskey",
"description": "Whiskey is a powerful test runner for Node.js applications and a process orchestration framework which makes running integration tests with a lot of service / process dependencies easier.",
"version": "0.8.5-dev",
"author": "Cloudkick, Inc. <[email protected]> http://www.cloudkick.com",
"contributors": [
{
"name": "Tomaz Muraus",
"email": "[email protected]",
"url": "http://www.tomaz.me"
},
{
"name": "Russell Haering",
"email": "[email protected]",
"url": "http://russellhaering.com"
},
{
"name": "Bjorn Tipling",
"email": "[email protected]",
"url": "http://bjorn.tipling.com"
},
{
"name": "Robert Chiniquy",
"email": "[email protected]",
"url": "http://robert-chiniquy.github.io"
},
{
"name": "Sam Falvo",
"email": "[email protected]"
}
],
"keywords": [ "whiskey", "tests", "test runner", "testing", "tdd", "coverage", "test coverage", "process orchestration"],
"homepage": "https://github.com/cloudkick/whiskey",
"repository": {
"type": "git",
"url": "git://github.com/cloudkick/whiskey.git"
},
"directories": {
"lib": "./lib",
"example": "./example",
"bin": "./bin"
},
"scripts": {
"lint": "./scripts/lint.sh",
"test": "make test"
},
"dependencies": {
"sprintf": ">= 0.1.1",
"async": ">= 0.1.22",
"magic-templates": "= 0.1.1",
"rimraf": "= 1.0.1",
"terminal": "= 0.1.3",
"gex": "= 0.0.1",
"simplesets": "= 1.1.6",
"logmagic": "= 0.1.4",
"underscore": ">= 1.4.2",
"istanbul": ">= 0.1.37",
"rewire": ">= 1.1.3",
"required-as": ">= 0.0.0"
},
"devDependencies": {
"jshint": "2.1.3"
},
"engines": {
"node": ">= 0.8.0"
},
"main": "./index",
"bin": "./bin/whiskey",
"licenses" : [
{
"type" : "Apache",
"url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
}
]
}