-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@district09/backstage-plugin-migrations-node",
"version": "1.1.8",
"license": "MIT",
"description": "Node.js library for the migrations plugin",
"repository": "https://github.com/district09/backstage-plugins",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"registry": "https://npm.pkg.github.com"
},
"backstage": {
"role": "node-library",
"pluginId": "migrations",
"pluginPackages": [
"@district09/backstage-plugin-migrations",
"@district09/backstage-plugin-migrations-backend",
"@district09/backstage-plugin-migrations-common",
"@district09/backstage-plugin-migrations-node"
]
},
"scripts": {
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"devDependencies": {
"@backstage/cli": "backstage:^"
},
"files": [
"dist"
],
"dependencies": {
"@backstage/backend-plugin-api": "backstage:^",
"@backstage/catalog-model": "backstage:^",
"@backstage/plugin-catalog-node": "backstage:^",
"@district09/backstage-plugin-migrations-common": "workspace:^"
}
}