UNPKG

tfjs-tiny-yolov2

Version:

Tiny YOLO v2 object detection with tensorflow.js.

46 lines (45 loc) 1.41 kB
{ "name": "tfjs-tiny-yolov2", "version": "0.4.0", "description": "Tiny YOLO v2 object detection with tensorflow.js.", "module": "./build/es6/index.js", "main": "./build/commonjs/index.js", "typings": "./build/commonjs/index.d.ts", "scripts": { "rollup-min": "rollup -c rollup.config.js --environment minify:true", "rollup": "rollup -c rollup.config.js", "tsc": "tsc", "tsc-es6": "tsc --p tsconfig.es6.json", "build": "rm -rf ./build && rm -rf ./dist && npm run rollup && npm run rollup-min && npm run tsc && npm run tsc-es6", "test": "karma start", "test-travis": "set KARMA_BROWSERS=ChromeHeadlessNoSandbox&& karma start --single-run" }, "keywords": [ "tiny", "yolo", "tensorflow", "tf" ], "author": "justadudewhohacks", "license": "MIT", "dependencies": { "@tensorflow/tfjs-core": "0.14.2", "tfjs-image-recognition-base": "^0.3.0", "tslib": "^1.9.3" }, "devDependencies": { "@types/jasmine": "^2.8.8", "@types/node": "^10.12.12", "jasmine-core": "^3.2.1", "karma": "^3.0.0", "karma-chrome-launcher": "^2.2.0", "karma-jasmine": "^1.1.2", "karma-typescript": "^3.0.12", "rollup": "^0.65.0", "rollup-plugin-commonjs": "^9.1.6", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-typescript2": "^0.16.1", "rollup-plugin-uglify": "^4.0.0", "typescript": "2.8.4" } }