-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
39 lines (39 loc) · 1.04 KB
/
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
37
38
39
{
"name": "clmtrackr",
"version": "1.1.2",
"description": "Javascript library for precise tracking of facial features via Constrained Local Models",
"main": "build/clmtrackr.js",
"module": "build/clmtrackr.module.js",
"repository": {
"type": "git",
"url": "https://github.com/auduno/clmtrackr.git"
},
"scripts": {
"build": "rollup -c",
"build-uglify": "rollup -c && uglifyjs build/clmtrackr.js -c > build/clmtrackr.min.js",
"clean": "rm -rf build"
},
"author": {
"name": "Audun Mathias Øygard",
"email": "[email protected]",
"url": "https://auduno.com/"
},
"keywords": [
"computer-vision"
],
"license": "MIT",
"devDependencies": {
"rollup": "^0.41.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.3.0",
"uglify-es": "^3.0.17"
},
"dependencies": {
"jsfeat": "git+https://github.com/inspirit/jsfeat",
"numeric": "^1.2.6",
"mosse": "^0.1.1",
"raf": "^3.3.2",
"promise-polyfill": "^6.0.2"
}
}