forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
{
"name": "@janus-idp/backstage-plugin-audit-log-node",
"description": "Node.js library for the audit-log plugin",
"version": "1.7.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "node-library",
"supported-versions": "1.32.5",
"pluginId": "audit-log",
"pluginPackage": "@janus-idp/backstage-plugin-audit-log-node",
"pluginPackages": [
"@janus-idp/backstage-plugin-audit-log-node"
]
},
"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/backend-plugin-api": "1.0.1",
"@backstage/backend-test-utils": "1.0.2",
"@backstage/cli": "0.28.2",
"@backstage/errors": "1.2.4",
"@backstage/types": "1.1.1",
"@types/lodash": "4.17.5",
"express": "4.20.0",
"jest-express": "1.12.0",
"prettier": "3.3.3"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/janus-idp/backstage-plugins",
"directory": "plugins/audit-log-node"
},
"keywords": [
"support:production",
"lifecycle:active",
"backstage",
"plugin"
],
"homepage": "https://red.ht/rhdh",
"bugs": "https://github.com/janus-idp/backstage-plugins/issues",
"dependencies": {
"lodash": "^4.17.21"
},
"maintainers": [
"@janus-idp/maintainers-plugins"
],
"author": "Red Hat"
}