forked from GitTools/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.17 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": "gittools-actions",
"version": "1.0.0",
"description": "Easy Semantic Versioning (http://semver.org) for projects using Git",
"repository": {
"type": "git",
"url": "https://github.com/GitTools/use-gitversion.git"
},
"main": "main.js",
"scripts": {
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"build:mock": "webpack --config webpack.config.js --env agent=mock",
"build:azure": "webpack --config webpack.config.js --env agent=azure",
"build:github": "webpack --config webpack.config.js --env agent=github",
"compress:mock": "npm run build:mock -- --env task=compress",
"compress:azure": "npm run build:azure -- --env task=compress",
"compress:github": "npm run build:github -- --env task=compress",
"build": "npm run build:mock && npm run build:azure && npm run build:github",
"compress": "npm run compress:mock && npm run compress:azure && npm run compress:github",
"publish:azure": "tfx extension publish --root ./dist/azure --no-wait-validation --auth-type pat"
},
"author": "GitTools",
"contributors": [
"GitTools contributors"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.0",
"@actions/tool-cache": "^1.7.1",
"azure-pipelines-task-lib": "^3.1.10",
"azure-pipelines-tool-lib": "^1.0.2",
"inversify": "^6.0.1",
"typed-rest-client": "^1.8.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^16.11.12",
"@types/q": "^1.5.5",
"@types/semver-compare": "^1.0.1",
"@types/uuid": "^8.3.3",
"minimist": "^1.2.5",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"replace-in-file-webpack-plugin": "^1.0.6",
"terser-webpack-plugin": "^5.2.5",
"tfx-cli": "^0.9.3",
"trim-newlines": ">=4.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"underscore": ">=1.12.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}