-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.46 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"author": "Robert Lindley <rob@coderrob.com> (https://coderrob.com)",
"backstage": {
"pluginId": "scaffolder",
"pluginPackage": "@backstage/plugin-scaffolder-backend",
"role": "backend-plugin-module"
},
"dependencies": {
"@backstage/backend-plugin-api": "^1.4.2",
"@backstage/errors": "^1.2.7",
"@backstage/plugin-scaffolder-node": "^0.11.0",
"axios": "^1.9.0",
"zod": "^3.25.7"
},
"description": "A Webex scaffolding module for @backstage/plugin-scaffolder-backend",
"devDependencies": {
"@backstage/backend-common": "^0.25.0",
"@backstage/cli": "^0.34.1",
"@backstage/plugin-scaffolder-node-test-utils": "^0.3.2",
"@spotify/prettier-config": "^15.0.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"node-gyp": "^11.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"files": [
"dist",
"!**/*.json",
"!**/*.test.*",
"!**/*.tsbuildinfo",
"!yarn.lock",
"catalog-info.yaml",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"backstage",
"cisco",
"incoming webhooks",
"scaffolder",
"webex"
],
"license": "Apache-2.0",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"main": "src/index.ts",
"name": "@coderrob/backstage-plugin-scaffolder-backend-module-webex",
"packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538",
"prettier": "@spotify/prettier-config",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"directory": ".",
"type": "git"
},
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"format": "yarn prettier . --write",
"lint": "backstage-cli package lint",
"postpack": "backstage-cli package postpack",
"prepack": "backstage-cli package prepack",
"pretest": "tsc -p tsconfig.test.json",
"prettier:check": "prettier --check .",
"start": "backstage-cli package start",
"test": "backstage-cli package test",
"tsc": "tsc",
"tsc:full": "tsc --skipLibCheck false --incremental false"
},
"types": "src/index.ts",
"version": "1.1.0"
}