-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "backstage-aws-cloudformation-plugin",
"version": "2.0.10",
"contributors": [
"Filip Pyrek <PyrekFilip@gmail.com> (https://filip.pyrek.cz)"
],
"description": "Backstage plugin for using AWS CloudFormation as source location",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 12.4.0"
},
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"tdd": "npm run test -- --watch",
"build": "rm -rf dist && tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"release": "standard-version"
},
"devDependencies": {
"@backstage/catalog-model": "^1.0.0",
"@backstage/config": "^1.0.0",
"@backstage/plugin-catalog-backend": "^1.0.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"aws-sdk-mock": "^5.6.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{ts,js,json}": "eslint --fix"
},
"dependencies": {
"aws-sdk": "^2.977.0",
"find-and-replace-anything": "^2.2.2"
},
"peerDependencies": {
"@backstage/catalog-model": "1.x",
"@backstage/config": "1.x",
"@backstage/plugin-catalog-backend": "1.x"
},
"homepage": "https://github.com/purple-technology/backstage-aws-cloudformation-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/purple-technology/backstage-aws-cloudformation-plugin.git"
},
"bugs": {
"url": "https://github.com/purple-technology/backstage-aws-cloudformation-plugin/issues"
},
"keywords": [
"backstage",
"aws",
"cloudformation",
"serverless"
],
"files": [
"dist"
]
}