-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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": "gulp-nunit-runner",
"version": "1.2.3",
"description": "A Gulp.js plugin to facilitate the running of NUnit unit tests on .Net assemblies. ",
"main": "lib/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 <standupbass@gmail.com> (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.3.4",
"gulp-util": "^3.0.0",
"lodash": "^4.3.0",
"sax": "^1.1.1",
"temp": "~0.8.1"
},
"devDependencies": {
"chai": "^3.2.0",
"gulp": "^3.9.0",
"gulp-filter": "^4.0.0",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^3.0.1",
"jshint": "^2.9.1",
"mocha": "^3.1.2"
}
}