-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
50
51
52
{
"name": "backstage-toolkit",
"version": "0.0.4",
"description": "Help teams to generate and validate their Backstage Entities for their Backstage Catalog.",
"main": "index.js",
"bin": {
"backstage-toolkit": "./bin/backstage-toolkit.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"prepack": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesandtags/backstage-toolkit.git"
},
"keywords": [
"backstage",
"toolkit",
"typescript",
"generator",
"developer experience",
"developer portal"
],
"author": {
"name": "Edwin Torres",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/codesandtags/backstage-toolkit/issues"
},
"homepage": "https://github.com/codesandtags/backstage-toolkit#readme",
"preferGlobal": true,
"type": "module",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@backstage/catalog-model": "^1.4.1",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"husky": "^8.0.3",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.1"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}