-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
33 lines (31 loc) · 1.05 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
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "jsonpath",
products: [
.executable(name: "jsonpath", targets: ["jsonpath"]),
],
dependencies: [
.package(url: "https://github.com/KittyMac/Chronometer.git", from: "0.1.0"),
.package(url: "https://github.com/KittyMac/Hitch.git", from: "0.4.0"),
.package(url: "https://github.com/KittyMac/Spanker.git", from: "0.2.0"),
.package(url: "https://github.com/KittyMac/Sextant.git", from: "0.4.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
],
targets: [
.executableTarget(
name: "jsonpath",
dependencies: [
"Hitch",
"Spanker",
"Chronometer",
"Sextant",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]),
.testTarget(
name: "jsonpathTests",
dependencies: [
"jsonpath"
]),
]
)