forked from auth0/JWTDecode.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
24 lines (22 loc) · 854 Bytes
/
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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "JWTDecode",
platforms: [.iOS(.v12), .macOS(.v10_15), .tvOS(.v12), .watchOS("6.2")],
products: [.library(name: "JWTDecode", targets: ["JWTDecode"])],
dependencies: [
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "6.0.0")),
.package(name: "Nimble", url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "12.0.0"))
],
targets: [
.target(
name: "JWTDecode",
dependencies: [],
path: "JWTDecode",
exclude: ["Info.plist"]),
.testTarget(
name: "JWTDecode.swiftTests",
dependencies: ["JWTDecode", "Quick", "Nimble"],
path: "JWTDecodeTests",
exclude: ["Info.plist"])
])