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 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "buster-configuration",
"version": "0.8.1",
"description": "Groks the buster.js configuration file, including resource loading, file globbing, grouped test configs and more",
"homepage": "http://busterjs.org/buster-configuration",
"author": {
"name": "Christian Johansen",
"email": "[email protected]",
"url": "http://cjohansen.no"
},
"contributors": [
{
"name": "August Lilleaas",
"email": "[email protected]",
"url": "http://augustl.com"
},
{
"name": "Daniel Wittner",
"email": "[email protected]",
"url": "https://github.com/dwittner"
},
{
"name": "Elliot Winkler",
"email": "[email protected]"
},
{
"name": "Sam Riley",
"email": "[email protected]"
},
{
"name": "Stein Magnus Jodal",
"email": "[email protected]",
"url": "http://jodal.no"
}
],
"main": "./lib/buster-configuration",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/busterjs/buster-configuration.git"
},
"bin": {
"buster-configuration": "./bin/buster-configuration"
},
"scripts": {
"test": "node run-tests.js",
"test-debug": "node --debug-brk run-tests.js"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"lodash": "3.x",
"when": "3.x",
"async": "1.x",
"ramp-resources": "2.x",
"glob": "5.x",
"bane": "1.x"
},
"devDependencies": {
"buster-node": "0.7.x",
"rimraf": "2.x"
}
}