cdk 2.179.0 → 2.1000.1

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/LICENSE +2 -1
  2. package/package.json +61 -31
package/LICENSE CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  Apache License
2
3
  Version 2.0, January 2004
3
4
  http://www.apache.org/licenses/
@@ -186,7 +187,7 @@
186
187
  same "printed page" as the copyright notice for easier
187
188
  identification within third-party archives.
188
189
 
189
- Copyright 2018-2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
190
+ Copyright [yyyy] [name of copyright owner]
190
191
 
191
192
  Licensed under the Apache License, Version 2.0 (the "License");
192
193
  you may not use this file except in compliance with the License.
package/package.json CHANGED
@@ -1,48 +1,78 @@
1
1
  {
2
2
  "name": "cdk",
3
- "version": "2.179.0",
4
3
  "description": "AWS CDK Toolkit",
5
- "bin": {
6
- "cdk": "bin/cdk"
7
- },
8
- "dependencies": {
9
- "aws-cdk": "2.179.0"
10
- },
11
4
  "repository": {
12
5
  "type": "git",
13
- "url": "https://github.com/aws/aws-cdk.git",
6
+ "url": "https://github.com/aws/aws-cdk-cli",
14
7
  "directory": "packages/cdk"
15
8
  },
16
- "keywords": [
17
- "aws",
18
- "cdk",
19
- "toolkit"
20
- ],
9
+ "bin": {
10
+ "cdk": "bin/cdk"
11
+ },
12
+ "scripts": {
13
+ "build": "npx projen build",
14
+ "bump": "npx projen bump",
15
+ "check-for-updates": "npx projen check-for-updates",
16
+ "check-licenses": "npx projen check-licenses",
17
+ "compile": "npx projen compile",
18
+ "default": "npx projen default",
19
+ "eslint": "npx projen eslint",
20
+ "gather-versions": "npx projen gather-versions",
21
+ "nx": "npx projen nx",
22
+ "package": "npx projen package",
23
+ "post-compile": "npx projen post-compile",
24
+ "pre-compile": "npx projen pre-compile",
25
+ "test": "npx projen test",
26
+ "test:watch": "npx projen test:watch",
27
+ "unbump": "npx projen unbump",
28
+ "watch": "npx projen watch",
29
+ "projen": "npx projen"
30
+ },
21
31
  "author": {
22
32
  "name": "Amazon Web Services",
23
33
  "url": "https://aws.amazon.com",
24
34
  "organization": true
25
35
  },
26
- "license": "Apache-2.0",
27
- "bugs": {
28
- "url": "https://github.com/aws/aws-cdk/issues"
36
+ "devDependencies": {
37
+ "@cdklabs/eslint-plugin": "^1.3.2",
38
+ "@stylistic/eslint-plugin": "^3.1.0",
39
+ "@types/jest": "^29.5.14",
40
+ "@types/node": "^16",
41
+ "@typescript-eslint/eslint-plugin": "^8",
42
+ "@typescript-eslint/parser": "^8",
43
+ "commit-and-tag-version": "^12",
44
+ "constructs": "^10.0.0",
45
+ "eslint": "^9",
46
+ "eslint-config-prettier": "^10.0.1",
47
+ "eslint-import-resolver-typescript": "^3.8.1",
48
+ "eslint-plugin-import": "^2.31.0",
49
+ "eslint-plugin-jest": "^28.11.0",
50
+ "eslint-plugin-prettier": "^5.2.3",
51
+ "jest": "^29.7.0",
52
+ "jest-junit": "^16",
53
+ "license-checker": "^25.0.1",
54
+ "prettier": "^2.8",
55
+ "projen": "^0.91.11",
56
+ "ts-jest": "^29.2.5",
57
+ "typescript": "5.6"
29
58
  },
30
- "homepage": "https://github.com/aws/aws-cdk",
31
- "scripts": {
32
- "build": "echo Nothing to build",
33
- "test": "echo OK",
34
- "package": "mkdir -p dist/js && cd dist/js && npm pack ../../",
35
- "build+test": "npm run build",
36
- "build+test+package": "npm run build+test && npm run package",
37
- "build+test+extract": "npm run build+test",
38
- "build+extract": "npm run build"
59
+ "dependencies": {
60
+ "aws-cdk": "^2.1000.1"
39
61
  },
62
+ "keywords": [
63
+ "aws",
64
+ "cdk"
65
+ ],
40
66
  "engines": {
41
- "node": ">= 14.15.0"
67
+ "node": ">= 16.0.0"
42
68
  },
43
- "stability": "stable",
44
- "maturity": "stable",
69
+ "main": "lib/index.js",
70
+ "license": "Apache-2.0",
71
+ "homepage": "https://github.com/aws/aws-cdk",
45
72
  "publishConfig": {
46
- "tag": "latest"
47
- }
48
- }
73
+ "access": "public"
74
+ },
75
+ "version": "2.1000.1",
76
+ "types": "lib/index.d.ts",
77
+ "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
78
+ }