forked from K-Phoen/backstage-plugin-confluence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 KB
/
package.json
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
{
"name": "@k-phoen/backstage-plugin-confluence-backend",
"version": "0.0.14",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
"homepage": "https://github.com/K-Phoen/backstage-plugin-confluence",
"bugs": {
"url": "https://github.com/K-Phoen/backstage-plugin-confluence/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/K-Phoen/backstage-plugin-confluence.git",
"directory": "plugins/search-confluence-backend"
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin"
},
"scripts": {
"start": "backstage-cli package start",
"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"
},
"dependencies": {
"@backstage/config": "^1.0.6",
"@backstage/plugin-search-common": "^1.2.1",
"node-fetch": "^2.6.7",
"p-limit": "^3.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.22.3",
"@types/node-fetch": "^2.6.1"
},
"files": [
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}