forked from keithmorris/gulp-nunit-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "gulp-nunit-runner",
"version": "0.4.3",
"description": "A Gulp.js plugin to facilitate the running of NUnit unit tests on .Net assemblies. ",
"main": "index.js",
"scripts": {
"test": "gulp"
},
"files": [
"index.js",
"lib/*.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/keithmorris/gulp-nunit-runner.git"
},
"keywords": [
"gulp",
"nunit",
".net",
"gulpplugin"
],
"author": "Keith Morris <[email protected]> (http://standupbass.wordpress.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keithmorris/gulp-nunit-runner/issues"
},
"homepage": "https://github.com/keithmorris/gulp-nunit-runner",
"dependencies": {
"event-stream": "^3.1.7",
"gulp-util": "^3.0.0",
"lodash": "^3.10.1",
"sax": "^1.1.1",
"temp": "~0.8.1"
},
"devDependencies": {
"chai": "^3.2.0",
"gulp": "^3.9.0",
"gulp-filter": "^3.0.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"mocha": "^2.2.5"
}
}