-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.9 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
66
67
68
69
70
71
72
73
{
"name": "gulp-dotnet-cli",
"version": "1.1.0",
"description": "A dotnet command line interface for gulp",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --require ts-node/register --require source-map-support/register test/js/**/*.ts",
"cover": "npm run compile && nyc npm test && nyc report --reporter=text-lcov | coveralls",
"cover-html": "nyc npm test && nyc report --reporter=html",
"clean": "rimraf ./dist",
"compile": "npm run clean && tslint -c tslint.json src/** test/js/** && tsc",
"compile-tests": "tsc --project test",
"docs": "rimraf ./docs && typedoc --mode file --out docs src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Janus-vistaprint/gulp-dotnet-cli.git"
},
"keywords": [
"dotnet",
"dotnet-core",
"dotnet-cli",
"gulpplugin"
],
"author": "Tommy Parnell",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Janus-vistaprint/gulp-dotnet-cli/issues"
},
"homepage": "https://github.com/Janus-vistaprint/gulp-dotnet-cli",
"dependencies": {
"child-process-promise": "^2.2.0",
"plugin-error": "^0.1.2",
"through2": "^2.0.3"
},
"devDependencies": {
"@types/gulp": "^4.0.5",
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"@types/plugin-error": "^0.1.0",
"@types/sinon": "^4.1.2",
"@types/through2": "^2.0.33",
"coveralls": "^2.13.0",
"del": "^3.0.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",
"sinon": "^4.1.3",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"tslint": "^5.8.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.2"
},
"files": [
"src",
"dist",
"docs"
],
"nyc": {
"exclude": [
"test/**",
"dist/**"
],
"extension": [
".ts",
".tsx"
]
}
}