forked from Janus-vistaprint/gulp-dotnet-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "gulp-dotnet-cli-v1",
"version": "0.0.2",
"description": "A fork of gulp-dotnet-cli the dotnet command line interface v1.0.0-preview2-1-3177",
"main": "./lib/index.js",
"scripts": {
"test": "mocha test/js/**/*.js",
"cover": "nyc --all npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "jshint lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-bello/gulp-dotnet-cli-v1"
},
"keywords": [
"dotnet",
"dotnet-core",
"dotnet-cli"
],
"author": "Alex Bello via Tommy Parnell",
"license": "ISC",
"bugs": {
"url": "https://github.com/alex-bello/gulp-dotnet-cli-v1/issues"
},
"homepage": "https://github.com/alex-bello/gulp-dotnet-cli-v1",
"dependencies": {
"child-process-promise": "^2.2.0",
"gulp-util": "^3.0.8",
"joi": "^10.3.1",
"lodash": "^4.17.4",
"through2": "^2.0.3"
},
"devDependencies": {
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.2.0",
"rimraf": "^2.6.1"
},
"nyc": {
"exclude": [
"test/**",
"lib/models/**"
]
}
}