forked from sindresorhus/gulp-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 728 Bytes
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
{
"name": "gulp-mocha",
"version": "2.2.0",
"description": "Run Mocha tests",
"license": "MIT",
"repository": "sindresorhus/gulp-mocha",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"mocha",
"test",
"testing",
"unit",
"framework",
"runner",
"tdd",
"bdd",
"qunit",
"spec",
"tap"
],
"dependencies": {
"gulp-util": "^3.0.0",
"mocha": "^2.0.1",
"plur": "^2.1.0",
"req-cwd": "^1.0.1",
"temp": "^0.8.3",
"through": "^2.3.4"
}
}