jsii-rosetta 5.9.40-dev.0 → 5.9.42-dev.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.
- package/package.json +35 -28
- package/releases.json +1 -1
package/package.json
CHANGED
|
@@ -4,28 +4,26 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/aws/jsii-rosetta.git"
|
|
6
6
|
},
|
|
7
|
-
"bin":
|
|
8
|
-
"jsii-rosetta": "bin/jsii-rosetta"
|
|
9
|
-
},
|
|
7
|
+
"bin": "bin/jsii-rosetta",
|
|
10
8
|
"scripts": {
|
|
11
|
-
"build": "
|
|
12
|
-
"clobber": "
|
|
13
|
-
"compile": "
|
|
14
|
-
"default": "
|
|
15
|
-
"eject": "
|
|
16
|
-
"eslint": "
|
|
17
|
-
"package": "
|
|
18
|
-
"post-compile": "
|
|
19
|
-
"post-upgrade": "
|
|
20
|
-
"pre-compile": "
|
|
21
|
-
"release": "
|
|
22
|
-
"tag-release": "
|
|
23
|
-
"test": "
|
|
24
|
-
"test:watch": "
|
|
25
|
-
"upgrade": "
|
|
26
|
-
"upgrade-jsii": "
|
|
27
|
-
"watch": "
|
|
28
|
-
"projen": "
|
|
9
|
+
"build": "projen build",
|
|
10
|
+
"clobber": "projen clobber",
|
|
11
|
+
"compile": "projen compile",
|
|
12
|
+
"default": "projen default",
|
|
13
|
+
"eject": "projen eject",
|
|
14
|
+
"eslint": "projen eslint",
|
|
15
|
+
"package": "projen package",
|
|
16
|
+
"post-compile": "projen post-compile",
|
|
17
|
+
"post-upgrade": "projen post-upgrade",
|
|
18
|
+
"pre-compile": "projen pre-compile",
|
|
19
|
+
"release": "projen release",
|
|
20
|
+
"tag-release": "projen tag-release",
|
|
21
|
+
"test": "projen test",
|
|
22
|
+
"test:watch": "projen test:watch",
|
|
23
|
+
"upgrade": "projen upgrade",
|
|
24
|
+
"upgrade-jsii": "projen upgrade-jsii",
|
|
25
|
+
"watch": "projen watch",
|
|
26
|
+
"projen": "projen"
|
|
29
27
|
},
|
|
30
28
|
"author": {
|
|
31
29
|
"name": "Amazon Web Services",
|
|
@@ -54,18 +52,18 @@
|
|
|
54
52
|
"eslint-plugin-unicorn": "^56.0.1",
|
|
55
53
|
"fs-monkey": "^1.1.0",
|
|
56
54
|
"jest": "^29.7.0",
|
|
57
|
-
"memfs": "^4.57.
|
|
55
|
+
"memfs": "^4.57.2",
|
|
58
56
|
"mock-fs": "^5.5.0",
|
|
59
57
|
"prettier": "^2.8.8",
|
|
60
|
-
"projen": "^0.99.
|
|
58
|
+
"projen": "^0.99.51",
|
|
61
59
|
"tar": "^6.2.1",
|
|
62
60
|
"ts-jest": "^29.4.9",
|
|
63
61
|
"ts-node": "^10.9.2"
|
|
64
62
|
},
|
|
65
63
|
"dependencies": {
|
|
66
|
-
"@jsii/check-node": "^1.
|
|
67
|
-
"@jsii/spec": "^1.
|
|
68
|
-
"@xmldom/xmldom": "^0.9.
|
|
64
|
+
"@jsii/check-node": "^1.128.0",
|
|
65
|
+
"@jsii/spec": "^1.128.0",
|
|
66
|
+
"@xmldom/xmldom": "^0.9.10",
|
|
69
67
|
"chalk": "^4",
|
|
70
68
|
"commonmark": "^0.31.2",
|
|
71
69
|
"fast-glob": "^3.3.3",
|
|
@@ -80,17 +78,26 @@
|
|
|
80
78
|
"engines": {
|
|
81
79
|
"node": ">= 20.16.0"
|
|
82
80
|
},
|
|
81
|
+
"devEngines": {
|
|
82
|
+
"packageManager": {
|
|
83
|
+
"name": "yarn",
|
|
84
|
+
"version": ">=4",
|
|
85
|
+
"onFail": "ignore"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
83
88
|
"main": "lib/index.js",
|
|
84
89
|
"license": "Apache-2.0",
|
|
85
90
|
"homepage": "https://aws.github.io/jsii",
|
|
86
91
|
"publishConfig": {
|
|
87
92
|
"access": "public"
|
|
88
93
|
},
|
|
89
|
-
"version": "5.9.
|
|
94
|
+
"version": "5.9.42-dev.0",
|
|
95
|
+
"packageManager": "yarn@4.13.0",
|
|
90
96
|
"types": "lib/index.d.ts",
|
|
91
97
|
"exports": {
|
|
92
98
|
".": "./lib/index.js",
|
|
93
99
|
"./package.json": "./package.json"
|
|
94
100
|
},
|
|
95
|
-
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"
|
|
101
|
+
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"yarn projen\".",
|
|
102
|
+
"stableVersion": "0.0.0"
|
|
96
103
|
}
|
package/releases.json
CHANGED