-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@red-hat-developer-hub/backstage-plugin-bulk-import-common",
"description": "Common functionalities for the bulk-import plugin",
"version": "7.2.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library",
"pluginId": "bulk-import",
"pluginPackages": [
"@red-hat-developer-hub/backstage-plugin-bulk-import",
"@red-hat-developer-hub/backstage-plugin-bulk-import-backend",
"@red-hat-developer-hub/backstage-plugin-bulk-import-common"
]
},
"sideEffects": false,
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint:check": "backstage-cli package lint",
"lint:fix": "backstage-cli package lint --fix",
"postpack": "backstage-cli package postpack",
"prepack": "backstage-cli package prepack",
"start": "backstage-cli package start",
"test": "backstage-cli package test --passWithNoTests --coverage",
"tsc": "tsc",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write ."
},
"devDependencies": {
"@backstage/cli": "^0.36.0",
"@backstage/plugin-permission-common": "^0.9.7",
"@spotify/prettier-config": "^15.0.0",
"prettier": "3.8.1"
},
"peerDependencies": {
"@backstage/plugin-permission-common": "^0.9.7"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/rhdh-plugins",
"directory": "workspaces/bulk-import/plugins/bulk-import-common"
},
"keywords": [
"backstage",
"plugin"
],
"homepage": "https://red.ht/rhdh",
"bugs": "https://github.com/redhat-developer/rhdh-plugins/issues",
"maintainers": [
"@rm3l"
],
"author": "Red Hat"
}