-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "aws-amplify-auth-ui-kitten",
"version": "1.0.0",
"description": "AWS Amplify Authentication UI Kitten implementation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project ./tsconfig.json",
"pub": "npm version patch && publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MEOM/aws-amplify-auth-ui-kitten.git"
},
"keywords": [
"AWS",
"Amplify",
"Authentication",
"UI Kitten"
],
"author": "MEOM",
"license": "MIT",
"bugs": {
"url": "https://github.com/MEOM/aws-amplify-auth-ui-kitten/issues"
},
"homepage": "https://github.com/MEOM/aws-amplify-auth-ui-kitten#readme",
"devDependencies": {
"typescript": "^4.1.3",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"@ui-kitten/components": "^5.0.0",
"aws-amplify-react-native": "^4.2.10",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz"
},
"peerDependencies": {
"@ui-kitten/components": "^5.0.0",
"aws-amplify-react-native": "^4.2.10",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz"
}
}