UNPKG

@azure-tools/extension

Version:

Yarn-Based extension aquisition (for Azure Open Source Projects)

74 lines 2.44 kB
{ "name": "@azure-tools/extension", "version": "3.7.1", "description": "Yarn-Based extension aquisition (for Azure Open Source Projects)", "engines": { "node": ">=12.0.0" }, "main": "./dist/index.js", "typings": "./dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/Azure/autorest.git" }, "keywords": [ "perks", "autorest", "azure", "typescript" ], "author": "Microsoft", "license": "MIT", "bugs": { "url": "https://github.com/Azure/autorest/issues" }, "homepage": "https://github.com/Azure/autorest/tree/main/packages/libs/extension", "readme": "https://github.com/Azure/autorest/tree/main/packages/libs/extension/readme.md", "dependencies": { "@autorest/system-requirements": "~1.1.0", "@azure-tools/async-io": "~3.0.0", "@azure-tools/tasks": "~3.0.0", "@azure/logger": "^1.0.2", "command-exists": "~1.2.9", "npm-package-arg": "^9.0.0", "npm": "~8.12.1", "pacote": "~9.5.12", "rimraf": "^5.0.5", "semver": "^7.3.5", "yarn": "1.22.17" }, "devDependencies": { "@types/jest": "^29.2.3", "@types/command-exists": "~1.2.0", "@types/node": "~20.9.0", "@types/npm-package-arg": "^6.1.0", "@types/pacote": "11.1.3", "@types/semver": "5.5.0", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.11.0", "cpy-cli": "~5.0.0", "eslint-plugin-jest": "~27.6.0", "eslint-plugin-node": "~11.1.0", "eslint-plugin-prettier": "~5.0.1", "eslint-plugin-unicorn": "~49.0.0", "eslint-plugin-import": "~2.29.0", "eslint": "^8.28.0", "jest": "^29.3.1", "mkdirp": "~3.0.1", "source-map-support": "^0.5.19", "typescript": "~5.2.2" }, "scripts": { "before-build": "mkdirp ./dist/yarn && cpy --flat ./node_modules/yarn/lib/cli.js ./dist/yarn", "watch": "tsc -p tsconfig.build.json --watch", "build": "npm run -s before-build && tsc -p tsconfig.build.json", "lint:fix": "eslint ./src --fix --ext .ts", "lint": "eslint ./src --ext .ts --max-warnings=0", "test": "jest --coverage=false --watch", "test:unit:ci": "jest --ci", "test:e2e": "jest --forceExit --runInBand --config ./jest.e2e.config.js", "test:e2e:ci": "jest --ci --forceExit --runInBand --config ./jest.e2e.config.js", "test:ci": "npm run test:unit:ci && npm run test:e2e:ci", "clean": "rimraf ./dist ./temp" } }