forked from SourceDocs/SourceDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
27 lines (26 loc) · 1016 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
25
26
27
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "SourceDocs",
products: [
.executable(name: "sourcedocs", targets: ["SourceDocs"]),
],
dependencies: [
.package(url: "https://github.com/jhildensperger/SourceKitten.git", .branch("fix/comments")),
.package(url: "https://github.com/Carthage/Commandant.git", .exact("0.16.0")),
.package(url: "https://github.com/eneko/MarkdownGenerator.git", from: "0.4.0"),
.package(url: "https://github.com/onevcat/Rainbow", from: "3.0.0"),
.package(url: "https://github.com/thoughtbot/Curry.git", from: "4.0.2"),
],
targets: [
.target(name: "SourceDocs", dependencies: [
"SourceKittenFramework",
"MarkdownGenerator",
"Rainbow",
"Commandant",
"Curry"
]),
.testTarget(name: "SourceDocsTests", dependencies: ["SourceDocs"]),
.target(name: "SourceDocsDemo", dependencies: []),
]
)