UNPKG

@azure-tools/extension

Version:

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

74 lines 2.45 kB
{ "name": "@azure-tools/extension", "version": "3.7.2", "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.1", "@azure-tools/async-io": "~3.0.0", "@azure-tools/tasks": "~3.0.0", "@azure/logger": "^1.2.0", "command-exists": "~1.2.9", "npm-package-arg": "^9.0.0", "npm": "~8.12.1", "pacote": "~9.5.12", "rimraf": "^6.0.1", "semver": "^7.7.2", "yarn": "1.22.17" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/command-exists": "~1.2.0", "@types/node": "~22.15.19", "@types/npm-package-arg": "^6.1.0", "@types/pacote": "11.1.3", "@types/semver": "7.7.0", "@typescript-eslint/eslint-plugin": "^8.32.1", "@typescript-eslint/parser": "^8.32.1", "cpy-cli": "~5.0.0", "eslint-plugin-jest": "~28.11.0", "eslint-plugin-node": "~11.1.0", "eslint-plugin-prettier": "~5.4.0", "eslint-plugin-unicorn": "~49.0.0", "eslint-plugin-import": "~2.31.0", "eslint": "^8.28.0", "jest": "^29.3.1", "mkdirp": "~3.0.1", "source-map-support": "^0.5.19", "typescript": "~5.8.3" }, "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" } }