cdk-common 2.0.1234 → 2.0.1236
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/.jsii +32 -2
- package/API.md +30 -0
- package/lib/main.js +1 -1
- package/lib/managed-policies.d.ts +6 -1
- package/lib/managed-policies.js +6 -1
- package/node_modules/form-data/CHANGELOG.md +651 -0
- package/node_modules/form-data/{Readme.md → README.md} +4 -4
- package/node_modules/form-data/lib/browser.js +3 -1
- package/node_modules/form-data/lib/form_data.js +150 -127
- package/node_modules/form-data/lib/populate.js +4 -4
- package/node_modules/form-data/package.json +26 -18
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
|
|
3
3
|
"name": "form-data",
|
|
4
4
|
"description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.",
|
|
5
|
-
"version": "2.5.
|
|
5
|
+
"version": "2.5.5",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git://github.com/form-data/form-data.git"
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"posttest": "npx npm@'>=10.2' audit --production",
|
|
20
20
|
"lint": "eslint --ext=js,mjs .",
|
|
21
21
|
"report": "istanbul report lcov text",
|
|
22
|
-
"ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8",
|
|
23
22
|
"ci-test": "npm run tests-only && npm run browser && npm run report",
|
|
24
23
|
"predebug": "rimraf coverage test/tmp",
|
|
25
24
|
"debug": "verbose=1 ./test/run.js",
|
|
@@ -28,15 +27,14 @@
|
|
|
28
27
|
"files": "pkgfiles --sort=name",
|
|
29
28
|
"get-version": "node -e \"console.log(require('./package.json').version)\"",
|
|
30
29
|
"update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
30
|
+
"postupdate-readme": "mv README.md.bak READ.ME.md.bak",
|
|
31
|
+
"restore-readme": "mv READ.ME.md.bak README.md",
|
|
32
|
+
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
33
|
+
"prepack": "npm run update-readme",
|
|
34
|
+
"postpack": "npm run restore-readme",
|
|
35
|
+
"version": "auto-changelog && git add CHANGELOG.md",
|
|
36
|
+
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|
34
37
|
},
|
|
35
|
-
"pre-commit": [
|
|
36
|
-
"lint",
|
|
37
|
-
"ci-test",
|
|
38
|
-
"check"
|
|
39
|
-
],
|
|
40
38
|
"engines": {
|
|
41
39
|
"node": ">= 0.12"
|
|
42
40
|
},
|
|
@@ -44,32 +42,42 @@
|
|
|
44
42
|
"asynckit": "^0.4.0",
|
|
45
43
|
"combined-stream": "^1.0.8",
|
|
46
44
|
"es-set-tostringtag": "^2.1.0",
|
|
45
|
+
"hasown": "^2.0.2",
|
|
47
46
|
"mime-types": "^2.1.35",
|
|
48
47
|
"safe-buffer": "^5.2.1"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@
|
|
52
|
-
"
|
|
53
|
-
"@types/node": "^12.20.55",
|
|
50
|
+
"@ljharb/eslint-config": "^21.2.0",
|
|
51
|
+
"auto-changelog": "^2.5.0",
|
|
54
52
|
"browserify": "^13.3.0",
|
|
55
53
|
"browserify-istanbul": "^2.0.0",
|
|
56
54
|
"coveralls": "^3.1.1",
|
|
57
55
|
"cross-spawn": "^4.0.2",
|
|
58
|
-
"
|
|
56
|
+
"encoding": "^0.1.13",
|
|
57
|
+
"eslint": "=8.8.0",
|
|
59
58
|
"fake": "^0.2.2",
|
|
60
59
|
"far": "^0.0.7",
|
|
61
60
|
"formidable": "^1.2.6",
|
|
62
61
|
"in-publish": "^2.0.1",
|
|
63
|
-
"is-node-modern": "^1.0.0",
|
|
64
62
|
"istanbul": "^0.4.5",
|
|
63
|
+
"js-randomness-predictor": "^1.5.5",
|
|
65
64
|
"obake": "^0.1.2",
|
|
66
65
|
"phantomjs-prebuilt": "^2.1.16",
|
|
67
66
|
"pkgfiles": "^2.3.2",
|
|
68
67
|
"pre-commit": "^1.2.2",
|
|
68
|
+
"puppeteer": "^1.20.0",
|
|
69
69
|
"request": "~2.87.0",
|
|
70
70
|
"rimraf": "^2.7.1",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
71
|
+
"semver": "^6.3.1",
|
|
72
|
+
"tape": "^5.9.0"
|
|
73
73
|
},
|
|
74
|
-
"license": "MIT"
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"auto-changelog": {
|
|
76
|
+
"output": "CHANGELOG.md",
|
|
77
|
+
"template": "keepachangelog",
|
|
78
|
+
"unreleased": false,
|
|
79
|
+
"commitLimit": false,
|
|
80
|
+
"backfillLimit": false,
|
|
81
|
+
"hideCredit": true
|
|
82
|
+
}
|
|
75
83
|
}
|