nodoface
Version:
C++ Addon for fast and efficient face analytics
48 lines • 1.25 kB
JSON
{
"name": "nodoface",
"version": "0.0.10",
"description": "C++ Addon for fast and efficient face analytics",
"main": "./api/nodoface.js",
"typings": "./api/index.d.ts",
"gypfile": true,
"scripts": {
"install": "npm run build",
"build": "node-gyp rebuild -j max",
"test": "mocha --slow 5 --timeout 10000000 --require ts-node/register tests/*.test.ts",
"clean:build": "rm -rf build",
"clean:test": "rm -f tests/outputs/*.jpg",
"clean": "npm run clean:build && npm run clean:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sziraqui/nodoface.git"
},
"keywords": [
"face-detection",
"opencv",
"openface",
"napi"
],
"author": {
"name": "Sarfaraz Iraqui",
"email": "sarfarazghlm@gmail.com"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sziraqui/nodoface/issues"
},
"homepage": "https://github.com/sziraqui/nodoface#readme",
"dependencies": {
"node-addon-api": "^1.6.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": ">8.0.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"node-gyp": "^5.0.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}