// Turn this project into a Scala.js project by importing these settings enablePlugins(ScalaJSPlugin) name := "Example" version := "0.1-SNAPSHOT" scalaVersion := "2.12.1" scalaJSUseMainModuleInitializer := true testFrameworks += new TestFramework("utest.runner.Framework") libraryDependencies ++= Seq( "org.scala-js" %%% "scalajs-dom" % "0.9.2", "com.lihaoyi" %%% "utest" % "0.4.5" % "test" )