forked from toranb/gulp-mocha-browserify-sweet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 797 Bytes
/
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
{
"name": "gulp-mocha-browserify-sweet",
"version": "0.2.0",
"description": "Generates a suite file from gulp.src glob on the fly for Browserify/Mocha",
"keywords": [
"gulp",
"browserify",
"mocha"
],
"author": {
"name": "toran billups",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/toranb/gulp-mocha-browserify-sweet"
},
"scripts": {
"test": "mocha test/*.spec.js --reporter tap"
},
"dependencies": {
"through": "*",
"gulp-util": "~2.2.0"
},
"devDependencies": {
"gulp": "^3.6.2",
"chai": "^1.9.1",
"mocha": "^1.18.2",
"gulp-concat": "^2.2.0"
},
"engines": {
"node": ">=0.10.26",
"npm": ">=1.2.10"
},
"main": "index.js",
"licenses": [
"MIT"
]
}