forked from hoffi/gulp-msbuild
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "gulp-msbuild",
"version": "0.11.0",
"description": "msbuild plugin for gulp. Inspired by grunt-msbuild.",
"keywords": [
"gulpplugin",
"msbuild",
"xbuild"
],
"contributors": [
{
"name": "Stefan Hoffmann",
"email": "[email protected]",
"url": "https://github.com/hoffi"
},
{
"name": "Davyd McColl",
"url": "https://github.com/fluffynuts",
"email": "[email protected]"
}
],
"repository": "fluffynuts/gulp-msbuild",
"scripts": {
"lint": "jshint",
"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",
"prerelease-beta": "run-s test",
"release-beta": "cross-env BETA=1 VERSION_INCREMENT_STRATEGY=patch run-s \"zarro release-npm\"",
"prerelease": "run-s test",
"release": "cross-env VERSION_INCREMENT_STRATEGY=minor run-s \"zarro release-npm\"",
"zarro": "zarro"
},
"dependencies": {
"chalk": "^4.0.0",
"didyoumean": "~1.2.1",
"glob": "^7.1.1",
"lodash": "^4.17.21",
"plugin-error": "^1.0.1",
"through2": "^2.0.0",
"uuid": "^3.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.14",
"@types/sinon": "^9.0.0",
"chai": "^3.4.0",
"coveralls": "*",
"istanbul": "*",
"jshint": "^2.11.0",
"mocha": "*",
"mocha-lcov-reporter": "*",
"mocha-sinon": "^1.1.6",
"proxyquire": "^1.8.0",
"sinon": ">=1.4.0 <2",
"sinon-chai": "^2.8.0",
"zarro": "^1.171.0"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}