forked from aws/aws-sdk-js-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "aws-sdk-js-v3",
"private": true,
"version": "0.7.0",
"description": "AWS SDK for JavaScript from the future",
"main": "index.js",
"scripts": {
"bootstrap": "yarn",
"clean": "yarn clear-build-cache && yarn clear-build-info && lerna clean",
"clear-build-cache": "rimraf ./packages/*/build/* ./clients/*/*/build/*",
"clear-build-info": "rimraf ./packages/*/*.tsbuildinfo ./clients/*/*/*.tsbuildinfo",
"copy-models": "node ./scripts/copyModels.js",
"update-clients": "node ./packages/package-generator/build/cli.js import-all --matching './models/*/*/service-2.json'",
"build-crypto-dependencies": "lerna run --scope '@aws-sdk/types' --scope '@aws-sdk/util-utf8-browser' --scope '@aws-sdk/util-locate-window' --scope '@aws-sdk/hash-node' --include-dependencies pretest",
"pretest": "yarn build-crypto-dependencies && lerna run pretest --since 'master' --include-dependencies",
"test": "jest --coverage --passWithNoTests",
"pretest-all": "lerna run pretest",
"test-all": "jest --coverage",
"integ-test": "cucumber.js"
},
"repository": {
"type": "git",
"url": "[email protected]:aws/aws-sdk-js-v3.git"
},
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com"
},
"license": "UNLICENSED",
"dependencies": {
"glob": "^7.1.2",
"rimraf": "^2.6.2",
"yargs": "^8.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jest": "^24.0.12",
"codecov": "^3.4.0",
"cucumber": "0.5.x",
"generate-changelog": "^1.7.1",
"husky": "^3.0.0",
"jest": "^24.7.1",
"jmespath": "^0.15.0",
"lerna": "3.18.3",
"lint-staged": "^9.0.0",
"prettier": "1.19.1",
"typescript": "~3.4.0",
"yarn": "1.19.1"
},
"workspaces": [
"packages/*",
"clients/browser/*",
"clients/node/*",
"clients/universal/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.{ts,js,md,json}": [
"prettier --write",
"git add"
]
}
}