Skip to content

Commit

Permalink
Got build working correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
andyinabox committed Jan 24, 2016
1 parent c1d215c commit 15079b1
Show file tree
Hide file tree
Showing 5 changed files with 14,209 additions and 9 deletions.
14,189 changes: 14,189 additions & 0 deletions build/clmtrackr.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/clmtrackr.min.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var clm=require("./clm.js");module.exports=clm;
2 changes: 1 addition & 1 deletion examples/clm_video.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<!-- <script src="../js/svmfilter_fft.js"></script> -->
<!-- <script src="../js/mossefilter.js"></script> -->
<script src="../clmtrackr.js"></script>
<script src="./ext_js/Stats.js"></script>
<script src="../node_modules/stats.js/src/Stats.js"></script>
<div id="content">
<h2>Facetracking example</h2>
<div id="container">
Expand Down
2 changes: 1 addition & 1 deletion examples/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</head>
<body>
<script src="./ext_js/utils.js"></script>
<script src="../clmtrackr.js"></script>
<script src="../build/clmtrackr.js"></script>
<script src="../models/model_pca_20_svm.js"></script>
<div id="content">
<h2>Example</h2>
Expand Down
24 changes: 17 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,30 @@
{
"name": "clmtrackr",
"version": "0.0.1",
"description": "Javascript library for precise tracking of facial features via Constrained Local Models",
"scripts": {
"build": "browserify src/index.js -s clm -o build/clmtrackr.js; uglifyjs src/index.js -m -r 'clm,clmtrackr' -o build/clmtrackr.min.js"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/auduno/clmtrackr.git"
},
"devDependencies": {
"browserify": "^13.0.0",
"getusermedia": "^1.3.5",
"grunt": "~0.4.2",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.7"
},
"dependencies": {
"blob.js": "andyinabox/Blob.js",
"exdat": "^0.6.2",
"blob.js": "andyinabox/Blob.js",
"filesaver.js": "andyinabox/FileSaver.js",
"numeric": "^1.2.6",
"grunt": "~0.4.2",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.7",
"uglify": "^0.1.5",
"raf": "^3.1.0",
"stats.js": "0.0.14-master"
},
"dependencies": {
"jsfeat": "0.0.8",
"numeric": "^1.2.6"
}
}

0 comments on commit 15079b1

Please sign in to comment.