-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "gulp-typescript-jenkins-reporter",
"version": "2.0.0",
"description": "gulp-typescript pmd reporter, to be used by Jenkins (Hudson). Writes output to an xml file.",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint src test/*.test.js; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolas-schmitt/gulp-typescript-jenkins-reporter.git"
},
"keywords": [
"gulp",
"typescript",
"tsc",
"pmd",
"reporter",
"report",
"xml",
"jenkins",
"hudson"
],
"author": "Nicolas Schmitt <https://github.com/nicolas-schmitt>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicolas-schmitt/gulp-typescript-jenkins-reporter/issues"
},
"homepage": "https://github.com/nicolas-schmitt/gulp-typescript-jenkins-reporter#readme",
"engines": {
"node": ">=4.0.0"
},
"peerDependencies": {
"gulp-typescript": "^3.1.3"
},
"dependencies": {
"lodash": "^4.17.4",
"plexer": "^1.0.1",
"readable-stream": "^2.2.2",
"upath": "^0.2.0",
"vinyl": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"chai-string": "^1.3.0",
"chai-xml": "^0.3.1",
"eslint": "^3.12.2",
"gulp": "^3.9.1",
"gulp-typescript": "^3.1.3",
"mocha": "^3.2.0",
"typescript": "^2.1.4",
"xmldom": "^0.1.27",
"xpath": "0.0.23"
}
}