-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.89 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
{
"name": "goreleaser-azure-devops-extension",
"version": "0.1.47",
"description": "Azure DevOps Extension for GoReleaser",
"main": "index.js",
"scripts": {
"clean": "rm -rf **/dist",
"prestart": "npx tsc -p ./",
"format": "prettier --write \"**/{*.ts,*.js,package.json}\"",
"postinstall": "(cd goreleaserTask && npm install); npm run compile",
"test": "ts-mocha **/tests/_suite.js",
"compile": "npx tsc -p .",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"create": "rm -rf dist ; npm run compile ; tfx extension create --manifest-globs vss-extension.json --output-path dist",
"release": "npx release-it -- --ci",
"publish_ci": "tfx extension publish --manifest-globs vss-extension.json --auth-type pat --token $AZURE_DEVOPS_EXT_PAT --publisher $PUBLISHER_NAME --extension-id $EXTENSION_ID --vsix dist/$PUBLISHER_NAME.$EXTENSION_ID-$VERSION.vsix",
"unpublish_ci": "tfx extension unpublish --manifest-globs vss-extension.json --auth-type pat --token $AZURE_DEVOPS_EXT_PAT --publisher $PUBLISHER_NAME --extension-id $EXTENSION_ID",
"share_dev": "tfx extension share --token $AZURE_DEVOPS_EXT_PAT --publisher $PUBLISHER_NAME --extension-id $EXTENSION_ID --share-with $SHARE_WITH_DEV_ORGA"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goreleaser/goreleaser-azure-devops-extension.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/goreleaser/goreleaser-azure-devops-extension/issues"
},
"homepage": "https://github.com/goreleaser/goreleaser-azure-devops-extension#readme",
"devDependencies": {
"@types/mocha": "10.0.10",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.1",
"eslint": "9.17.0",
"prettier": "3.3.3",
"tfx-cli": "0.17.0",
"ts-mocha": "10.0.0",
"typescript": "5.7.2"
}
}