UNPKG

emoji-net

Version:

EmojiNet is an image to emoji recognizer based on MobileNet / Google Emoji Scavenger Hunt

63 lines 1.87 kB
{ "name": "emoji-net", "version": "0.2.3", "description": "EmojiNet is an image to emoji recognizer based on MobileNet / Google Emoji Scavenger Hunt", "main": "dist/src/mod.js", "typings": "dist/src/mod.d.ts", "scripts": { "clean": "shx rm -fr dist/*", "dist": "npm run clean && tsc", "lint": "npm run lint:es && npm run lint:ts", "lint:ts": "tsc --noEmit", "pack": "npm pack", "start": "npm run example", "example": "ts-node examples/main.ts", "test": "npm run lint && npm run test:unit", "test:unit": "tap --node-arg=--require=ts-node/register \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"", "test:unit:debug": "cross-env BROLOG_LEVEL=silly blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"", "test:pack": "bash -x scripts/npm-pack-testing.sh", "lint:es": "eslint --ignore-pattern fixtures/ \"src/**/*.ts\" \"tests/**/*.ts\"" }, "keywords": [ "emoji", "hunt", "mobilenet", "tfjs" ], "author": "Huan LI <zixia@zixia.net>", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/huan/emoji-net.git" }, "bugs": { "url": "https://github.com/huan/emoji-net/issues" }, "homepage": "https://github.com/huan/emoji-net#readme", "dependencies": { "@tensorflow/tfjs-converter": "^0.6.7", "@tensorflow/tfjs-core": "^0.13.11", "canvas": "^2.8.0", "isomorphic-fetch": "^3.0.0", "lodash": "^4.17.21" }, "devDependencies": { "@chatie/eslint-config": "^0.12.4", "@chatie/git-scripts": "^0.6.2", "@chatie/tsconfig": "^0.16.2", "@types/lodash": "^4.14.172", "shx": "^0.3.3", "tstest": "^0.5.16" }, "git": { "scripts": { "pre-push": "npx git-scripts-pre-push" } }, "tap": { "check-coverage": false }, "publishConfig": { "tag": "latest" } }