-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.16 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
{
"name" : "grunt-vows-runner",
"version" : "0.6.0",
"description" :
"An alternative test-runner for vows using grunt. Adds new capabilities such as running test suites concurrently.",
"keywords" :
["vows", "test", "testing", "runner", "task", "gruntplugin", "grunt", "bdd", "concurrent", "asynchronous", "parallel"],
"author" : {
"name" : "Adam Stallard",
"email" : "adam@goalzen.org",
"url" : "goalzen.org"
},
"directories" : {
"test" : "test"
},
"dependencies" : {
"lodash" : "*"
},
"peerDependencies" : {
"grunt" : "~0.4",
"vows" : "*"
},
"devDependencies" : {
"vows" : "*",
"chai" : "*",
"grunt" : "~0.4",
"grunt-contrib-jshint" : "*"
},
"license" : {
"type" : "MIT",
"url" : "https://github.com/goalzen/grunt-vows-runner/blob/master/LICENSE-MIT"
},
"engines" : {
"node" : ">=0.8.0"
},
"scripts" : {
"test" : "grunt"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/goalzen/grunt-vows-runner.git"
},
"bugs" : {
"url" : "https://github.com/goalzen/grunt-vows-runner/issues"
},
"homepage" : "https://github.com/goalzen/grunt-vows-runner.git"
}