Files
backstage/packages/e2e-test/package.json
T
dependabot[bot] e0a69ba49f build(deps): bump fs-extra from 9.1.0 to 10.0.1
Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra) from 9.1.0 to 10.0.1.
- [Release notes](https://github.com/jprichardson/node-fs-extra/releases)
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jprichardson/node-fs-extra/compare/9.1.0...10.0.1)

---
updated-dependencies:
- dependency-name: fs-extra
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-08 04:23:22 +00:00

53 lines
1.2 KiB
JSON

{
"name": "e2e-test",
"description": "E2E test for verifying Backstage packages",
"version": "0.2.0",
"private": true,
"backstage": {
"role": "cli"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/e2e-test"
},
"keywords": [
"backstage"
],
"license": "Apache-2.0",
"main": "src/index.ts",
"scripts": {
"start": "nodemon --",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"test:e2e": "yarn start",
"build": "backstage-cli package build",
"clean": "backstage-cli package clean"
},
"bin": {
"e2e-test": "bin/e2e-test"
},
"devDependencies": {
"@backstage/cli-common": "^0.1.8",
"@backstage/errors": "^0.2.2",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.14.32",
"@types/puppeteer": "^5.4.4",
"chalk": "^4.0.0",
"commander": "^6.1.0",
"cross-fetch": "^3.1.5",
"fs-extra": "10.0.1",
"handlebars": "^4.7.3",
"pgtools": "^0.3.0",
"puppeteer": "^13.1.1",
"tree-kill": "^1.2.2",
"ts-node": "^10.0.0"
},
"nodemonConfig": {
"watch": "./src",
"exec": "bin/e2e-test",
"ext": "ts"
}
}