OMEX-Azure-DevOps-Extensions/package.json

96 строки
3.6 KiB
JSON
Исходник Обычный вид История

2021-03-19 22:14:11 +03:00
{
2021-03-31 21:51:02 +03:00
"$schema": "https://json.schemastore.org/package.json",
"name": "prmetrics",
"publisher": "ms-omex",
"version": "1.5.10",
"description": "Augments pull request titles to let reviewers quickly determine PR size and test coverage.",
"main": "dist/index.js",
"scripts": {
"build:initialization": "cross-env-shell \"npm install && mkdirp $npm_config_dir && ncp src $npm_config_dir\"",
"build:debug": "npm run build:initialization --dir=debug && cd debug/task && tsc --sourceMap",
"build:release": "npm run build:initialization --dir=release && cd release/task && tsc && ncc build index.js --out . --minify && babel index.js --out-file index2.js --config-file ../../babel.config.json && ncc build index2.js --out . --minify && ncp index2.js index.js && rimraf src tests typedocs *.ts index2.js package.json tsconfig.json typedoc.json && cd .. && mkdirp extension && ncp ../package.json extension/package.json",
"build:package": "npm install && ncc build src/task/index.ts --out dist --minify && rimraf dist/package.json && ncp src/task/Strings/resources.resjson/en-US/resources.resjson dist/resources.resjson",
"build:docs": "cd src/task && typedoc",
"build": "npm run build:release && npm run build:package && npm run build:docs",
"clean": "rimraf debug && rimraf release",
"deploy": "npm run build:release && exitzero tfx build tasks delete --task-id 907d3b28-6b37-4ac7-ac75-9631ee53e512 --no-prompt && tfx build tasks upload --task-path release/task --no-prompt",
"lint": "eslint --fix **/*.ts",
"test": "npm run build:debug && cd debug/task && c8 --reporter=text --reporter=text-summary mocha tests/**/*.spec.js"
},
2021-03-19 22:14:11 +03:00
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/PR-Metrics.git"
2021-03-19 22:14:11 +03:00
},
"keywords": [
"Extension",
"Marketplace",
"Continuous Integration",
"Continuous Delivery",
"Build",
"Release",
"GitHub Actions",
"Azure Pipelines",
"Azure DevOps Extensions",
"Visual Studio Extensions"
2021-03-19 22:14:11 +03:00
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/PR-Metrics/issues"
},
"homepage": "https://github.com/microsoft/PR-Metrics#readme",
"engines": {
"node": ">=10.24.1"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@octokit/plugin-rest-endpoint-methods": "10.2.0",
"@octokit/types": "12.4.0",
"axios": "1.6.4",
"azure-devops-node-api": "12.1.0",
"azure-pipelines-task-lib": "4.7.0",
"isomorphic-fetch": "3.0.0",
"octokit": "3.1.2",
"parse-git-diff": "0.0.14",
"reflect-metadata": "0.2.1",
"tsyringe": "4.8.0"
2021-03-19 22:14:11 +03:00
},
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.7",
"@babel/preset-env": "7.23.7",
"@tsconfig/node10": "1.0.9",
"@types/glob": "8.1.0",
"@types/isomorphic-fetch": "0.0.39",
"@types/mocha": "10.0.6",
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"@vercel/ncc": "0.38.1",
"babel-plugin-transform-globalthis": "1.0.0",
"c8": "9.0.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"exitzero": "1.0.1",
"glob": "10.3.10",
"mkdirp": "3.0.1",
"mocha": "10.2.0",
"ncp": "2.0.0",
"source-map-support": "0.5.21",
"tfx-cli": "0.16.0",
"ts-mockito": "2.6.1",
"typedoc": "0.25.6",
"typescript": "5.3.3"
},
"ts-standard": {
"ignore": [
"dist"
]
2021-03-19 22:14:11 +03:00
}
}