forked from aws/aws-sdk-js-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
144 lines (144 loc) · 6.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "aws-sdk-js-v3",
"private": true,
"version": "0.0.0",
"description": "AWS SDK for JavaScript from the future",
"main": "index.js",
"scripts": {
"bootstrap": "yarn",
"bootstrap:ci": "yarn install --frozen-lockfile",
"build:all": "node ./scripts/turbo build",
"build:ci": "node ./scripts/turbo build",
"build:clients:generic": "node ./scripts/turbo build -F=@aws-sdk/aws-echo-service",
"build:clients:since:release": "node ./scripts/turbo build -F=./packages/* -F=./clients/* -F=./lib/*",
"build:crypto-dependencies": "node ./scripts/turbo build -F=@aws-sdk/types -F=@aws-sdk/util-locate-window",
"build:e2e": "node ./scripts/turbo build -F=@aws-sdk/client-cloudformation -F=@aws-sdk/karma-credential-loader -F=@aws-sdk/client-s3-control -F=@aws-sdk/client-sts",
"build:packages": "node ./scripts/turbo build -F=./packages/*",
"build:protocols": "node ./scripts/turbo build -F=./private/aws-protocoltests-*",
"build:server-protocols": "node ./scripts/turbo build -F=./private/*-server",
"build:types:downlevel": "node --es-module-specifier-resolution=node ./scripts/downlevel-dts",
"clean": "yarn clear-build-cache && yarn clear-build-info && lerna clean",
"clear-build-docs": "rimraf ./clients/*/docs/ ./dist/docs/clients/*/docs/ ./clientDocs",
"clear-build-cache": "rimraf ./packages/*/dist-* ./clients/*/dist-* ./lib/*/dist-* ./private/*/dist-*",
"clear-build-info": "rimraf ./packages/**/*.tsbuildinfo ./clients/**/*.tsbuildinfo ./lib/**/*.tsbuildinfo ./private/**/*.tsbuildinfo",
"copy-models": "node ./scripts/copy-models",
"extract:docs": "node ./scripts/extract-docs/index.js",
"g:vitest": "cd $INIT_CWD && vitest",
"generate-clients": "node ./scripts/generate-clients",
"generate:clients:generic": "node ./scripts/generate-clients/generic",
"generate:defaults-mode-provider": "./scripts/generate-defaults-mode-provider/index.js",
"lerna:version": "lerna version --exact --conventional-commits --no-push --no-git-tag-version --no-commit-hooks --loglevel silent --yes",
"lint:ci": "lerna exec --since origin/main --exclude-dependents --ignore '@aws-sdk/client-*' --ignore '@aws-sdk/aws-*' 'eslint --quiet src/**/*.ts'",
"lint:release": "lerna exec --ignore '@aws-sdk/client-*' --ignore '@aws-sdk/aws-*' 'eslint --quiet src/**/*.ts'",
"lint:versions": "node scripts/runtime-dependency-version-check/runtime-dep-version-check.js",
"lint:dependencies": "node scripts/runtime-dependency-version-check/check-dependencies.js",
"local-publish": "node ./scripts/verdaccio-publish/index.js",
"test:all": "yarn build:all && jest --passWithNoTests && lerna run test --scope '@aws-sdk/{fetch-http-handler,hash-blob-browser}' && yarn test:versions && yarn test:integration",
"test:ci": "lerna run test --since origin/main",
"test:e2e": "make test-e2e && node ./tests/canary/canary",
"test:e2e:legacy": "cucumber-js --fail-fast",
"test:e2e:legacy:preview": "./tests/e2e-legacy/preview.mjs",
"test:e2e:legacy:since:release": "./tests/e2e-legacy/since-release.mjs",
"test:functional": "jest --passWithNoTests --config tests/functional/jest.config.js && lerna run test --scope \"@aws-sdk/client-*\"",
"test:integration": "make test-integration",
"test:integration:legacy": "yarn test:e2e:legacy",
"test:integration:legacy:since:release": "yarn test:e2e:legacy:since:release",
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-protocoltests-*'",
"test:server-protocols": "yarn build:server-protocols && lerna run test --scope '@aws-sdk/*-server'",
"test:size": "cd scripts/benchmark-size/runner && yarn && npx tsx ./cli.ts",
"test:unit": "make test-unit",
"test:versions": "jest --config tests/versions/jest.config.js tests/versions/index.spec.ts",
"update:versions:default": "node --es-module-specifier-resolution=node ./scripts/update-versions/default.mjs",
"update:versions:current": "node --es-module-specifier-resolution=node ./scripts/update-versions/current.mjs"
},
"repository": {
"type": "git",
"url": "[email protected]:aws/aws-sdk-js-v3.git"
},
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com"
},
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@cucumber/cucumber": "8.5.3",
"@cucumber/pretty-formatter": "^1.0.0",
"@fastify/formbody": "^7.4.0",
"@microsoft/api-extractor": "7.34.4",
"@mixer/parallel-prettier": "2.0.3",
"@tsconfig/recommended": "1.0.1",
"@types/fs-extra": "^8.0.1",
"@types/jest": "29.5.11",
"@types/jsdom": "20.0.1",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"async": "3.2.4",
"concurrently": "7.0.0",
"decomment": "0.9.5",
"downlevel-dts": "0.10.1",
"esbuild": "0.18.17",
"eslint": "8.36.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-export-all": "1.2.2",
"eslint-plugin-tsdoc": "0.2.17",
"esprint": "3.6.0",
"fastify": "^4.11.0",
"figlet": "^1.5.0",
"fs-extra": "^9.0.0",
"generate-changelog": "^1.7.1",
"glob": "7.1.6",
"happy-dom": "14.12.3",
"husky": "^4.2.3",
"jest": "29.7.0",
"jmespath": "^0.15.0",
"json5": "^2.2.0",
"kill-port": "^2.0.1",
"lerna": "5.5.2",
"lint-staged": "^10.0.1",
"prettier": "2.8.5",
"rimraf": "3.0.2",
"ts-jest": "29.1.1",
"ts-loader": "9.4.2",
"tsx": "4.19.2",
"turbo": "2.1.2",
"typescript": "~4.9.5",
"verdaccio": "5.25.0",
"vite": "4.5.5",
"vitest": "0.34.6",
"webpack": "5.76.0",
"webpack-cli": "4.10.0",
"yargs": "17.5.1"
},
"overrides": {
"vite": "4.5.5"
},
"resolutions": {
"vite": "4.5.5"
},
"workspaces": {
"packages": [
"clients/*",
"lib/*",
"packages/*",
"private/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint:versions && yarn lint:dependencies",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{lib,packages}/**/src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"**/*.{ts,js,md,json}": "prettier --write"
},
"packageManager": "[email protected]"
}