forked from aws-samples/aws-sdk-js-tests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "aws-sdk-js-tests",
"version": "1.0.0",
"description": "Code Sample for testing AWS JS SDK",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --mode development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-samples/aws-sdk-js-tests.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aws-samples/aws-sdk-js-tests/issues"
},
"homepage": "https://github.com/aws-samples/aws-sdk-js-tests#readme",
"devDependencies": {
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "1.19.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": "prettier --write"
},
"dependencies": {
"@aws-sdk/client-cognito-identity": "^1.0.0-alpha.16",
"@aws-sdk/client-pinpoint": "^1.0.0-alpha.14",
"@aws-sdk/credential-provider-cognito-identity": "^1.0.0-alpha.14",
"aws-sdk": "^2.609.0"
}
}