-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "aws-sdk-js-codemod",
"version": "2.4.5",
"description": "Collection of codemod scripts that help update AWS SDK for JavaScript APIs",
"keywords": [
"jscodeshift",
"transform",
"aws",
"sdk",
"javascript",
"v2",
"v3",
"migration"
],
"homepage": "https://github.com/aws/aws-sdk-js-codemod",
"license": "MIT-0",
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com"
},
"contributors": [
"Kamat, Trivikram <[email protected]>"
],
"files": [
"bin",
"dist"
],
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": "bin/aws-sdk-js-codemod",
"repository": {
"type": "git",
"url": "git+https://github.com/aws/aws-sdk-js-codemod.git"
},
"scripts": {
"build": "tsc",
"format": "biome format --write",
"generate:map": "tsx scripts/generateClientTypesMap",
"generate:tests": "tsx scripts/generateNewClientTests",
"lint": "biome lint --write",
"release": "tsx scripts/testUpdatedIdentifiers && npm run build && changeset publish",
"test": "vitest",
"version": "changeset version && npm i --package-lock-only"
},
"dependencies": {
"jscodeshift": "17.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@changesets/cli": "^2.27.1",
"@tsconfig/node16": "^16.1.3",
"@types/jscodeshift": "^0.12.0",
"@types/node": "^16.18.101",
"aws-sdk": "2.1692.0",
"tsx": "^4.7.1",
"typescript": "~5.7.2",
"vitest": "~2.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "10.9.0",
"onFail": "error"
}
},
"publishConfig": {
"provenance": true
}
}