cdk-iam-floyd 0.600.0 → 0.601.0

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 +4 -5
  2. package/package.json +5 -8
package/README.md CHANGED
@@ -14,13 +14,12 @@
14
14
  **AWS [IAM policy statement][statement] generator with fluent interface.**
15
15
 
16
16
  <!-- stats -->
17
-
18
17
  Support for:
19
18
 
20
- - 353 Services
21
- - 14236 Actions
22
- - 1504 Resource Types
23
- - 1493 Condition keys
19
+ - 386 Services
20
+ - 16253 Actions
21
+ - 1750 Resource Types
22
+ - 1689 Condition keys
24
23
  <!-- /stats -->
25
24
 
26
25
  ![EXPERIMENTAL](https://img.shields.io/badge/stability-experimantal-orange?style=for-the-badge)**<br>This is an early version of the package. The API will change while I implement new features. Therefore make sure you use an exact version in your `package.json` before it reaches 1.0.0.**
package/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "scripts": {
3
3
  "pregenerate": "find lib bin -name \"*.js\" -type f -exec rm -vf {} \\;",
4
- "generate": "npx tsc bin/generate.ts lib/generator/*.ts && node bin/generate.js",
5
- "index-managed-policies": "npx tsc bin/index-managed-policies.ts lib/generator/*.ts && node bin/index-managed-policies.js",
6
- "build": "npx tsc",
7
- "package": "mkdir -p dist/js && npm pack --pack-destination dist/js",
8
- "test": "npx ts-node test/main.ts"
4
+ "generate": "npx ts-node bin/generate.ts",
5
+ "index-managed-policies": "npx ts-node bin/index-managed-policies.ts",
6
+ "build": "npx tsc"
9
7
  },
10
8
  "name": "cdk-iam-floyd",
11
9
  "description": "AWS IAM policy statement generator with fluent interface for AWS CDK",
12
- "version": "0.600.0",
10
+ "version": "0.601.0",
13
11
  "license": "Apache-2.0",
14
12
  "author": {
15
13
  "name": "Daniel Schroeder",
@@ -24,7 +22,7 @@
24
22
  "homepage": "https://github.com/udondan/iam-floyd",
25
23
  "repository": {
26
24
  "type": "git",
27
- "url": "https://github.com/udondan/iam-floyd.git"
25
+ "url": "git+https://github.com/udondan/iam-floyd.git"
28
26
  },
29
27
  "bugs": {
30
28
  "url": "https://github.com/udondan/iam-floyd/issues"
@@ -49,7 +47,6 @@
49
47
  "@types/node": "20.11.17",
50
48
  "@types/request": "^2.48.12",
51
49
  "@types/request-promise-native": "^1.0.21",
52
- "aws-lambda": "^1.0.7",
53
50
  "cheerio": "^1.0.0-rc.12",
54
51
  "colors": "1.4.0",
55
52
  "glob": "^10.3.10",