forked from TsuyoshiUshio/CommentPRTask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 KB
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
{
"name": "CommentPRTask",
"version": "1.0.0",
"description": "Create a comment on a pull request",
"main": "task.js",
"scripts": {
"compile": "tsc -p .",
"deploy": "Script\\deploy.bat",
"build": "Script\\build.bat",
"test": "tsc -p . & nyc mocha ./Test/L0.js",
"report": "tsc -p . & mocha ./Test/L0.js --reporter mocha-junit-reporter & nyc report"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"Src"
],
"reporter": [
"text",
"cobertura",
"html"
],
"report-dir": "./.coverage_output/coverage",
"all": "true",
"check-coverage": true,
"statements": 70,
"functions": 70,
"branches": 70,
"lines": 70
},
"author": "DevSecOps",
"license": "MIT",
"dependencies": {
"azure-devops-node-api": "^9.0.1",
"azure-pipelines-task-lib": "^2.8.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@types/q": "^1.5.2",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"nyc": "^14.1.1",
"rewiremock": "^3.13.7",
"sinon": "^7.3.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0"
}
}