@cloud-copilot/iam-simulate 0.1.26 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +66 -4
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # IAM Simulate
2
2
 
3
+ [![NPM Version](https://img.shields.io/npm/v/@cloud-copilot/iam-simulate.svg?logo=nodedotjs)](https://www.npmjs.com/package/@cloud-copilot/iam-simulate) [![License: AGPL v3](https://img.shields.io/github/license/cloud-copilot/iam-simulate)](LICENSE.txt) [![GuardDog](https://github.com/cloud-copilot/iam-simulate/actions/workflows/guarddog.yml/badge.svg)](https://github.com/cloud-copilot/iam-simulate/actions/workflows/guarddog.yml) [![Known Vulnerabilities](https://snyk.io/test/github/cloud-copilot/iam-simulate/badge.svg?targetFile=package.json&style=flat-square)](https://snyk.io/test/github/cloud-copilot/iam-simulate?targetFile=package.json)
4
+
3
5
  An AWS IAM Simulator and Policy Tester built as a Node/Typescript library.
4
6
 
5
7
  The simulator currently supports these features of AWS IAM
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloud-copilot/iam-simulate",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "Simulate evaluation of AWS IAM policies",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,14 +36,76 @@
36
36
  "homepage": "https://github.com/cloud-copilot/iam-simulate#readme",
37
37
  "devDependencies": {
38
38
  "@cloud-copilot/prettier-config": "^0.1.1",
39
+ "@semantic-release/changelog": "^6.0.3",
40
+ "@semantic-release/commit-analyzer": "^13.0.1",
41
+ "@semantic-release/git": "^10.0.1",
42
+ "@semantic-release/github": "^11.0.1",
43
+ "@semantic-release/npm": "^12.0.1",
44
+ "@semantic-release/release-notes-generator": "^14.0.3",
39
45
  "@types/node": "^22.5.0",
40
- "@vitest/coverage-v8": "^2.0.5",
46
+ "@vitest/coverage-v8": "^3.0.7",
47
+ "semantic-release": "^24.2.1",
41
48
  "typescript": "^5.5.4",
42
- "vitest": "^2.0.5"
49
+ "vitest": "^3.0.7"
43
50
  },
44
51
  "dependencies": {
45
52
  "@cloud-copilot/iam-data": ">=0.8.0 <1.0.0",
46
53
  "@cloud-copilot/iam-policy": "^0.1.7"
47
54
  },
48
- "prettier": "@cloud-copilot/prettier-config"
55
+ "prettier": "@cloud-copilot/prettier-config",
56
+ "release": {
57
+ "branches": [
58
+ "main"
59
+ ],
60
+ "plugins": [
61
+ [
62
+ "@semantic-release/commit-analyzer",
63
+ {
64
+ "releaseRules": [
65
+ {
66
+ "type": "feat",
67
+ "release": "patch"
68
+ },
69
+ {
70
+ "type": "fix",
71
+ "release": "patch"
72
+ },
73
+ {
74
+ "breaking": true,
75
+ "release": "patch"
76
+ },
77
+ {
78
+ "type": "*",
79
+ "release": "patch"
80
+ }
81
+ ]
82
+ }
83
+ ],
84
+ "@semantic-release/release-notes-generator",
85
+ "@semantic-release/changelog",
86
+ [
87
+ "@semantic-release/npm",
88
+ {
89
+ "npmPublish": true
90
+ }
91
+ ],
92
+ [
93
+ "@semantic-release/git",
94
+ {
95
+ "assets": [
96
+ "package.json",
97
+ "package-lock.json",
98
+ "CHANGELOG.md"
99
+ ],
100
+ "message": "chore(release): ${nextRelease.version} [skip ci]"
101
+ }
102
+ ],
103
+ [
104
+ "@semantic-release/github",
105
+ {
106
+ "assets": []
107
+ }
108
+ ]
109
+ ]
110
+ }
49
111
  }