-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.17 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
{
"name": "dlib-correlation-tracker-js",
"version": "1.2.1",
"description": "Bindings to dlib correlation_tracker module",
"main": "lib-node.js",
"browser": "lib-browser.js",
"scripts": {
"tsc": "tsc",
"emcc:base": "emcc --bind -s MODULARIZE=1 -O3 binding.cpp",
"emcc:browser": "npm run emcc:base -- -s FILESYSTEM=0 -s ALLOW_MEMORY_GROWTH=1 --memory-init-file 0 -s ENVIRONMENT=web -o dist/binding-browser.js",
"emcc:browser-ext": "npm run emcc:browser -- --pre-js browser-ext-pre-js.js",
"emcc:node": "npm run emcc:base -- -s ENVIRONMENT=node -o dist/binding-node.js",
"build": "npm run emcc:browser-ext && npm run emcc:node && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danrouse/dlib-correlation-tracker-js.git"
},
"keywords": [
"dlib",
"emscripten",
"correlation",
"tracking"
],
"author": "Dan Rouse <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danrouse/dlib-correlation-tracker-js/issues"
},
"homepage": "https://github.com/danrouse/dlib-correlation-tracker-js#readme",
"devDependencies": {
"@types/node": "^10.12.18",
"typescript": "^3.2.2"
}
}