forked from hoffi/gulp-msbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "gulp-msbuild",
"version": "0.2.12",
"description": "msbuild plugin for gulp. Inspired by grunt-msbuild.",
"keywords": [
"gulpplugin",
"msbuild",
"xbuild"
],
"author": {
"name": "Stefan Hoffmann",
"email": "sthoffmann93@googlemail.com",
"url": "https://github.com/hoffi"
},
"repository": "hoffi/gulp-msbuild",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"gulp-util": ">=3.0.0",
"lodash": "^3.1.0",
"through2": "*"
},
"devDependencies": {
"mocha": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul": "*",
"mocha-sinon": "^1.1.2",
"sinon-chai": "^2.5.0",
"chai": "^1.9.1"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}