forked from nicolas-schmitt/gulp-typescript-jenkins-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "gulp-typescript-jenkins-reporter",
"version": "4.0.0",
"description": "gulp-typescript pmd reporter, to be used by Jenkins (Hudson). Writes output to an xml file.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"lint-and-test": "yarn tsc && yarn lint && yarn test"
},
"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": ">=10"
},
"peerDependencies": {
"gulp-typescript": "^5.0.1"
},
"dependencies": {
"lodash": "^4.17.15",
"upath": "^1.2.0"
},
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.0",
"@types/xmldom": "^0.1.29",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"xmldom": "^0.3.0"
}
}