-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.14 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": "wasm-face-detection",
"version": "1.0.0",
"description": "Face Detection using dlib/OpenCV in WebAssembly",
"main": "index.js",
"scripts": {
"configure:cpp": "mkdir -p dist/build && cd dist/build && emcmake cmake ../..",
"build:cpp": "cd dist/build && emmake make",
"clean:cpp": "cd dist/build && emmake make clean",
"build": "npm run configure:cpp && npm run build:cpp && webpack",
"start": "webpack-dev-server",
"deploy": "npm run build && gh-pages -d dist -s '**/*.+(html|js|wasm|dat)'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanchas116/wasm-face-detection.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanchas116/wasm-face-detection/issues"
},
"homepage": "https://github.com/seanchas116/wasm-face-detection#readme",
"private": true,
"devDependencies": {
"@types/emscripten": "^1.39.3",
"gh-pages": "^2.2.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}