-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
54 lines (52 loc) · 1.43 KB
/
Package.swift
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
// swift-tools-version:5.2
import PackageDescription
let package = Package(
name: "Auth0",
platforms: [
.iOS(.v9),
.macOS(.v10_11),
.watchOS(.v2),
.tvOS(.v9),
],
products: [
.library(
name: "Auth0",
targets: [
"Auth0"
]
),
],
dependencies: [
.package(name: "JWTDecode", url: "https://github.com/auth0/JWTDecode.swift", from: "2.4.1"),
.package(url: "https://github.com/auth0/SimpleKeychain", from: "0.11.1"),
// .package(url: "https://github.com/Quick/Quick", .upToNextMajor(from: "2.0.0")),
// .package(url: "https://github.com/Quick/Nimble", from: "8.1.0"),
// .package(url: "https://github.com/AliSoftware/OHHTTPStubs", from: "9.0.0"),
],
targets: [
.target(
name: "Auth0",
dependencies: [
"Auth0ObjC",
"SimpleKeychain",
"JWTDecode",
]
),
.target(
name: "Auth0ObjC",
dependencies: [
],
publicHeadersPath: "."
),
// .testTarget(
// name: "Auth0Tests",
// dependencies: [
// "Auth0",
// "Quick",
// "Nimble",
// "OHHTTPStubs",
// .product(name: "OHHTTPStubsSwift", package: "OHHTTPStubs")
// ]
// ),
]
)