Files
backstage/packages/yarn-plugin/package.json
T
MT Lewis 43566de4e9 yarn-plugin: add integration test suite
The new test suite fully exercises the plugin,
including onboarding and offboarding from the
plugin and the effect on lockfiles.

Signed-off-by: MT Lewis <mtlewis@users.noreply.github.com>
2025-01-07 12:31:45 +00:00

49 lines
1.2 KiB
JSON

{
"name": "yarn-plugin-backstage",
"version": "0.0.4",
"description": "Yarn plugin for working with Backstage monorepos",
"backstage": {
"role": "node-library"
},
"private": true,
"keywords": [
"backstage"
],
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/yarn-plugin"
},
"license": "Apache-2.0",
"main": "./src/index.ts",
"scripts": {
"build": "builder build plugin",
"clean": "backstage-cli package clean",
"lint": "backstage-cli package lint",
"start": "nodemon --",
"test": "backstage-cli package test"
},
"nodemonConfig": {
"exec": "builder build plugin",
"ext": "ts",
"watch": "./src"
},
"dependencies": {
"@backstage/cli-common": "workspace:^",
"@backstage/release-manifests": "workspace:^",
"@yarnpkg/core": "^4.0.3",
"@yarnpkg/fslib": "^3.0.2",
"@yarnpkg/plugin-pack": "^4.0.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "workspace:^",
"@backstage/cli": "workspace:^",
"@yarnpkg/builder": "^4.0.0",
"fs-extra": "^11.2.0",
"nodemon": "^3.0.1",
"yaml": "^2.0.0"
}
}