-
Notifications
You must be signed in to change notification settings - Fork 427
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
55
56
57
58
59
60
{
"name": "artifact-engine",
"version": "1.2.0",
"description": "Artifact Engine to download artifacts from jenkins, teamcity, vsts",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azure-pipelines-extensions/tree/master/Extensions/ArtifactEngine"
},
"keywords": [
"artifact"
],
"license": "MIT",
"main": "",
"author": {
"name": "omeshp",
"email": "omeshp@microsoft.com"
},
"dependencies": {
"azure-pipelines-task-lib": "^3.4.0",
"handlebars": "4.7.7",
"minimatch": "^3.0.5",
"tunnel": "0.0.4"
},
"devDependencies": {
"@types/minimatch": "^2.0.29",
"@types/mocha": "^5.2.7",
"@types/mockery": "1.4.29",
"@types/node": "^10.17.0",
"@types/xml2js": "^0.4.8",
"assert": "1.4.1",
"mocha": "^10.0.0",
"mocha-tap-reporter": "0.1.3",
"mockery": "2.1.0",
"nconf": "^0.12.0",
"nock": "9.1.0",
"nyc": "^15.0.0",
"sinon": "4.0.1",
"typescript": "4.0.2",
"xml2js": "^0.5.0"
},
"files": [
"Engine/**/*.js",
"Models/**/*.js",
"Store/**/*.js",
"Providers/**/*.js",
"Providers/*.handlebars",
"Engine/**/*.d.ts",
"Models/**/*.d.ts",
"Store/**/*.d.ts",
"Providers/**/*d.ts",
"LICENSE",
"README.md",
"ThirdPartyNotices.txt",
"lib.json",
"Strings/**"
],
"scripts": {
"test": "nyc ./node_modules/mocha/bin/_mocha --reporter mocha-tap-reporter **/*Tests.js"
}
}