This repository has been archived by the owner on Jun 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
85 lines (85 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
82
83
84
85
{
"name": "buster-test",
"version": "0.8.0",
"description": "Promised based evented xUnit and BDD style test runner for JavaScript",
"homepage": "http://docs.busterjs.org/en/latest/modules/buster-test/",
"author": "Christian Johansen",
"contributors": [
{
"name": "Christian Johansen",
"email": "[email protected]",
"url": "http://cjohansen.no"
},
{
"name": "August Lilleaas",
"email": "[email protected]",
"url": "http://augustl.com"
},
{
"name": "Calle Arnesten",
"email": "[email protected]"
},
{
"name": "Christoph Neuroth",
"email": "[email protected]"
},
{
"name": "Daniel Wittner",
"email": "[email protected]",
"url": "https://github.com/dwittner"
},
{
"name": "Fábio M. Costa",
"email": "[email protected]"
},
{
"name": "Malcolm Locke",
"email": "[email protected]"
},
{
"name": "Rodrigo Rosenfeld Rosas",
"email": "[email protected]"
},
{
"name": "Rod Vagg",
"email": "[email protected]",
"url": "http://vagg.org"
},
{
"name": "Stein Magnus Jodal",
"email": "[email protected]",
"url": "http://jodal.no"
}
],
"license": "BSD-3-Clause",
"main": "./lib/buster-test",
"repository": {
"type": "git",
"url": "https://github.com/busterjs/buster-test.git"
},
"scripts": {
"test": "node run-tests.js",
"test-debug": "node --debug-brk run-tests.js"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"ansi-colorizer": "1.x",
"async": "1.x",
"bane": "1.x",
"lodash": "3.x",
"platform": "1.x",
"semver-compare": "1.x",
"when": "3.x"
},
"optionalDependencies": {
"jsdom": "3.x || 7.x"
},
"devDependencies": {
"stack-filter": "1.x",
"referee": "1.x",
"formatio": "1.x",
"sinon": "1.x"
}
}