-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathPackage.swift
More file actions
19 lines (18 loc) · 768 Bytes
/
Package.swift
File metadata and controls
19 lines (18 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Marionette",
products: [
.library(name: "Marionette", targets: ["Marionette"]),
],
dependencies: [
.package(url: "https://github.com/artman/Signals", from: "6.0.0"),
.package(url: "https://github.com/LinusU/JSBridge", from: "1.0.0-alpha.15"),
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.0.0"),
],
targets: [
.target(name: "Marionette", dependencies: ["JSBridge", "PromiseKit", "Signals"], path: "Sources"),
.testTarget(name: "MarionetteTests", dependencies: ["Marionette"], path: "Tests"),
]
)