forked from poirierlouis/sbt-traceur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
25 lines (18 loc) · 785 Bytes
/
build.sbt
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
sbtPlugin := true
name := "sbt-traceur"
organization := "rayshader"
version := "2.2.0-SNAPSHOT"
description := "sbt-web plugin to compile ES6 to ES5 with traceur-compiler."
licenses += ("MIT", url("https://github.com/LuigiPeace/sbt-traceur/blob/master/LICENSE"))
publishMavenStyle := true
bintrayRepository := "sbt"
bintrayOrganization in bintray := None
scalaVersion := "2.10.4"
resolvers += Resolver.typesafeRepo("releases")
addSbtPlugin("com.typesafe.sbt" % "sbt-js-engine" % "1.2.1")
libraryDependencies ++= Seq(
"org.webjars.npm" % "minimatch" % "3.0.4",
"org.webjars.npm" % "traceur" % "0.0.111",
"org.webjars.npm" % "graceful-readlink" % "1.0.1"
)
publishTo := Some("Bintray API Realm" at s"https://api.bintray.com/content/rayshader/sbt/sbt-traceur/2.2.0-SNAPSHOT")