Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GordonLesti committed Jul 21, 2016
1 parent a23ee3f commit 37fca6c
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 55 deletions.
50 changes: 1 addition & 49 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,41 +1,6 @@
module.exports = function( grunt ) {
"use strict";
var key, browsers = [

// Windows 7
{ browserName: "chrome", version: "46", platform: "Windows 7" },
{ browserName: "firefox", version: "41", platform: "Windows 7" },
{ browserName: "internet explorer", version: "9", platform: "Windows 7" },
{ browserName: "internet explorer", version: "10", platform: "Windows 7" },
{ browserName: "internet explorer", version: "11", platform: "Windows 7" },

// Windows 8.1
{ browserName: "chrome", version: "46", platform: "Windows 8.1" },
{ browserName: "firefox", version: "41", platform: "Windows 8.1" },
{ browserName: "internet explorer", version: "11", platform: "Windows 8.1" },

// Windows 10
{ browserName: "chrome", version: "46", platform: "Windows 10" },
{ browserName: "firefox", version: "41", platform: "Windows 10" },
{ browserName: "internet explorer", version: "11", platform: "Windows 10" },

// Apple Mac
{ browserName: "chrome", version: "46", platform: "OS X 10.11" },
{ browserName: "firefox", version: "41", platform: "OS X 10.11" },
{ browserName: "safari", version: "9", platform: "OS X 10.11" },

// Linux
{ browserName: "chrome", version: "46", platform: "Linux" },
{ browserName: "firefox", version: "41", platform: "Linux" },

// Apple iOS
{ browserName: "iphone", version: "8.4" },
{ browserName: "ipad", version: "8.4" },

// Google Android
{ browserName: "android", version: "4.4" },
{ browserName: "android", version: "5.1" }
];
var key;

grunt.initConfig( {
pkg: grunt.file.readJSON( "package.json" ),
Expand Down Expand Up @@ -106,19 +71,6 @@ module.exports = function( grunt ) {
}
}
},
"saucelabs-qunit": {
all: {
options: {
urls: [ "http://127.0.0.1:9999/test/index.html" ],
tunnelTimeout: 5,
build: process.env.TRAVIS_JOB_ID,
concurrency: 3,
browsers: browsers,
testname: "qunit tests",
tags: [ "master" ]
}
}
},
watch: {}
} );

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Coverage Status][ico-coverall]][link-coveralls]
[![Total Downloads][ico-downloads]][link-downloads]

[Dynamic](https://en.wikipedia.org/wiki/Dynamic_time_warping) time warping for Javascript. As simple usecase would be
[Dynamic time warping](https://en.wikipedia.org/wiki/Dynamic_time_warping) for Javascript. As simple usecase would be
[Touch signature identification with Javascript](https://gordonlesti.com/touch-signature-identification-with-javascript/)
for example.

Expand Down
21 changes: 21 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "dynamic-time-warping",
"version": "1.0.0",
"description": "Dynamic time warping for Javascript",
"main": "src/dynamic-time-warping.js",
"authors": [
"Gordon Lesti <[email protected]>"
],
"license": "MIT",
"keywords": [
"dynamic",
"time",
"warping"
],
"homepage": "https://github.com/GordonLesti/dynamic-time-warping",
"ignore": [
"**/.*",
"node_modules",
"test"
]
}
2 changes: 1 addition & 1 deletion dist/dynamic-time-warping.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
"url": "https://github.com/GordonLesti/dynamic-time-warping.git"
},
"keywords": [
"Dynamic time warping"
"dynamic",
"time",
"warping"
],
"author": "Gordon Lesti",
"author": "Gordon Lesti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GordonLesti/dynamic-time-warping/issues"
Expand All @@ -29,7 +31,6 @@
"grunt-coveralls": "^1.0.1",
"grunt-jscs": "^3.0.1",
"grunt-jsonlint": "^1.1.0",
"grunt-qunit-istanbul": "^0.6.0",
"grunt-saucelabs": "^9.0.0"
"grunt-qunit-istanbul": "^0.6.0"
}
}

0 comments on commit 37fca6c

Please sign in to comment.