-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 931 Bytes
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
{
"name": "dynamic-time-warping",
"version": "1.0.0",
"description": "Dynamic time warping for Javascript",
"main": "src/dynamic-time-warping.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/GordonLesti/dynamic-time-warping.git"
},
"keywords": [
"dynamic",
"time",
"warping"
],
"author": "Gordon Lesti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GordonLesti/dynamic-time-warping/issues"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-qunit": "^1.2.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-coveralls": "^1.0.1",
"grunt-jscs": "^3.0.1",
"grunt-jsonlint": "^1.1.0",
"grunt-qunit-istanbul": "^0.6.0"
}
}