-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
41 lines (41 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
{
"name": "@aws-sdk/test",
"version": "1.0.0",
"description": "Monorepo with code samples for testing AWS SDK for JavaScript",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start:node": "(cd packages/node && yarn start:node)",
"start:web": "(cd packages/web && yarn start:web)",
"start:ios": "(cd packages/react-native && yarn ios)",
"start:android": "(cd packages/react-native && yarn android)",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-samples/aws-sdk-js-tests.git"
},
"keywords": [],
"author": {
"name": "AWS SDK for JavaScript Team",
"url": "https://aws.amazon.com/javascript/"
},
"license": "MIT-0",
"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": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
},
"packageManager": "yarn@3.8.3",
"lint-staged": {
"*.{js,css,json,md}": "prettier --write"
}
}