-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "@roadiehq/backstage-entity-validator",
"version": "0.5.1",
"author": "RoadieHQ",
"description": "Backstage entity validator",
"main": "dist/index.js",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/RoadieHQ/backstage-entity-validator",
"bugs": {
"url": "https://github.com/RoadieHQ/backstage-entity-validator/issues",
"email": "support@roadie.io"
},
"repository": "https://github.com/RoadieHQ/backstage-entity-validator",
"publishConfig": {
"access": "public"
},
"bin": {
"validate-entity": "./bin/bev"
},
"scripts": {
"validate": "node src/index.js",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@backstage/catalog-model": "^1.4.3",
"@roadiehq/roadie-backstage-entity-validator": "^2.4.11",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"glob": "^10.3.16",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0"
},
"keywords": [
"backstage",
"validation",
"linting",
"roadie"
]
}