diff --git a/.gitignore b/.gitignore index 3c3629e6..0a601d7f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +jspm_packages diff --git a/index.html b/index.html index 8fc88ab6..cf90870a 100644 --- a/index.html +++ b/index.html @@ -11,19 +11,10 @@ margin: 0; } - - + + diff --git a/package.json b/package.json index 1fdddcb9..f543c4a6 100644 --- a/package.json +++ b/package.json @@ -5,18 +5,25 @@ "main": "src/index.js", "scripts": { "start": "browser-sync start --files \"src/**/*\" --server --no-notify", + "init": "jspm init --yes", + "install": "jspm install", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Damien Mortini", "license": "MIT", - "dependencies": { - "babel-core": "^5.8.25", - "dlib": "dmmn/dlib", - "systemjs": "^0.19.0", - "systemjs-plugin-text": "systemjs/plugin-text", - "webcomponents.js": "^0.7.2" - }, "devDependencies": { - "browser-sync": "^2.9.3" + "browser-sync": "^2.9.3", + "jspm": "^0.16.6" + }, + "jspm": { + "dependencies": { + "dlib": "github:dmmn/dlib@master", + "text": "github:systemjs/plugin-text@^0.0.2" + }, + "devDependencies": { + "babel": "npm:babel-core@^5.8.24", + "babel-runtime": "npm:babel-runtime@^5.8.24", + "core-js": "npm:core-js@^1.1.4" + } } }