This repository has been archived by the owner on Sep 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
{
"name": "buster",
"version": "0.8.0",
"main": "./lib/buster",
"description": "Buster.JS JavaScript Test framework. Meta package that pieces together various sub-projects.",
"homepage": "http://busterjs.org/",
"author": {
"name": "August Lilleaas and Christian Johansen"
},
"contributors": [
{
"name": "August Lilleaas",
"email": "august.lilleaas@gmail.com",
"url": "http://augustl.com"
},
{
"name": "Christian Johansen",
"email": "christian@cjohansen.no",
"url": "http://cjohansen.no"
},
{
"name": "Daniel Wittner",
"email": "d.wittner@gmx.de",
"url": "https://github.com/dwittner"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/busterjs/buster.git"
},
"bin": {
"buster": "./bin/buster",
"buster-test": "./bin/buster-test",
"buster-server": "./bin/buster-server",
"buster-autotest": "./bin/buster-autotest",
"buster-static": "./bin/buster-static",
"buster-ci": "./bin/buster-ci"
},
"scripts": {
"test": "node run-tests.js && node run-integration-tests.js",
"test-debug": "node --debug-brk run-tests.js"
},
"dependencies": {
"async": "1.x",
"bane": "1.x",
"buster-autotest": "0.6.x",
"buster-ci": "0.3.x",
"buster-server-cli": "0.4.x",
"buster-sinon": "0.7.x",
"buster-static": "0.7.x",
"buster-syntax": "0.5.x",
"buster-test": "0.8.x",
"buster-test-cli": "0.9.x",
"evented-logger": "1.x",
"formatio": "1.x",
"lodash": "3.x",
"platform": "1.x",
"referee": "1.x",
"referee-sinon": "1.x",
"samsam": "1.x",
"sinon": "1.x",
"stack-filter": "1.x",
"when": "3.x >=3.7.6"
},
"devDependencies": {
"buster-amd": "0.3.x",
"buster-html-doc": "2.x",
"phantomjs": "1.x",
"uglify-js": "2.x"
}
}