-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.75 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "toolkit-for-git",
"version": "0.1.24",
"license": "MIT",
"private": true,
"description": "Toolkit for Git is an Azure DevOps extension with a series of Git tasks, which can be used to carry out local or remote git commands in your build pipeline.",
"author": {
"name": "V-Network Solutions",
"email": "[email protected]",
"url": "https://github.com/V-Network-Solutions/"
},
"contributors": [{
"name": "Ryan Valizan",
"url": "https://twitter.com/devnetkc"
},
{
"name": "Evan Deuvall",
"url": "https://twitter.com/EvanDeuvall"
}
],
"keywords": [
"azure",
"azuredevops",
"azuredevops-extension",
"extension",
"git",
"node",
"node-js",
"nodejs",
"typescript",
"typescript4"
],
"scripts": {
"build": "npm test && npm run lint",
"clean": "rimraf ./src/**/{*.js,*.map} .coverage .test-results .release *.vsix .taskkey",
"cov-open": "npm run build && nyc --check-coverage false npm run mocha && npm run cov-reopen",
"cov-reopen": "open .coverage/index.html",
"dev-reset": "npm run clean && node -e \"require('rimraf').sync('node_modules');\" && npm run dev-setup",
"dev-setup": "npm i && npm run build",
"ext-upload": "tfx extension publish --manifest-globs vss-extension.json",
"lint": "tslint -c tslint.json '*.ts'",
"mocha": "mocha",
"package": "tfx extension create --manifest-globs vss-extension.json",
"package-deps": "copy-node-modules . .release",
"package-ext": "mkdirp .release/ && ncp src/main/ .release/ --filter=\"^((?!(\\.(map|ts|spec\\.js))).)+$\"",
"posttest": "replace-in-file --isRegex true \"/(.js)/g\" .ts .test-results/sonar.xml",
"preext-upload": "npm run prepackage",
"prepackage": "npm run test-dev && npm run package-ext && npm run package-deps",
"pretest": "tsc",
"test": "nyc npm run mocha",
"test-dev": "npm run transpile && npm test && npm run lint",
"tfx": "tfx",
"tfx-login": "tfx login",
"transpile": "npm run clean && tsc"
},
"homepage": "https://github.com/V-Network-Solutions/toolkit-for-git",
"repository": {
"type": "git",
"url": "git+https://github.com/V-Network-Solutions/toolkit-for-git.git"
},
"bugs": {
"url": "https://github.com/V-Network-Solutions/toolkit-for-git/issues/new/choose"
},
"dependencies": {
"azure-pipelines-task-lib": "^2.10.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@swellaby/nyc-config": "^3.0.7",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"@types/q": "^1.5.4",
"@types/valid-url": "^1.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copy-node-modules": "^1.1.1",
"mkdirp": "^1.0.4",
"mocha": "^8.1.3",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.1.7",
"mocha-sonarqube-reporter": "^1.0.2",
"ncp": "^2.0.0",
"nyc": "^15.1.0",
"opn-cli": "^5.0.0",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"tfx-cli": "^0.8.3",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.0.3"
},
"nyc": {
"extends": "@swellaby/nyc-config",
"exclude": [
"src/tests/**/*.spec*",
"src/main/common/constants.ts"
],
"include": [
"src/main/**/*"
],
"extension": [
".ts"
]
}
}