forked from invertase/react-native-apple-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.93 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
{
"name": "@invertase/react-native-apple-authentication",
"version": "2.1.5",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "A complete Apple Authentication services API for React Native iOS apps.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"tsc:compile": "npx tsc --noEmit",
"build": "genversion --semi lib/version.js",
"build:all": "yarn build:clean && yarn build && yarn build:example:android && yarn build:example:ios",
"build:example:android": "cd example/android && ./gradlew assembleDebug",
"build:example:ios": "cd example && (xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES || true)",
"build:clean": "rimraf ios/build android/build example/android/app/build example/ios/build",
"build:docs": "typedoc --includeDeclarations --excludeExternals --out docs --plugin typedoc-plugin-markdown --hideBreadcrumbs",
"precommit": "yarn prepare && yarn build:all",
"prepare": "yarn tsc:compile && yarn prepare:example",
"prepare:example": "cd example && yarn && cd ios && (pod install || true)",
"shipit": "yarn np"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-apple-authentication"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"apple",
"iOS",
"button",
"firebase",
"aws",
"authentication",
"ios",
"apple auth",
"apple authentication"
],
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "16.9.56",
"@types/react-native": "0.63.35",
"genversion": "^2.2.1",
"np": "^7.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.5"
},
"publishConfig": {
"access": "public"
}
}