UNPKG

emoji-js

Version:

A JS Emoji conversion library

50 lines (49 loc) 1.46 kB
{ "name": "emoji-js", "version": "3.8.1", "description": "A JS Emoji conversion library", "main": "lib/emoji.js", "files": [ "LICENSE", "README.md", "CHANGES.md", "lib" ], "dependencies": { "emoji-datasource": "15.0.1" }, "devDependencies": { "jasmine-core": "~3.7", "karma": "^6.4.1", "karma-chrome-launcher": "^3.1.1", "karma-coverage": "~2.0", "karma-jasmine": "^4.0.2", "karma-story-reporter": "^0.3.1", "puppeteer": "~9.1.1", "uglify-js": "^3.17.4", "minimatch": "^3.0.5" }, "repository": { "type": "git", "url": "git://github.com/iamcal/js-emoji.git" }, "keywords": [ "emoji", "emoticon", "mobile", "browser" ], "author": "Cal Henderson <cal@iamcal.com>", "license": "MIT", "bugs": { "url": "https://github.com/iamcal/js-emoji/issues" }, "homepage": "https://github.com/iamcal/js-emoji", "scripts": { "compile": "php build/build.php > lib/emoji.js", "uglify": "echo \"/* $(npm -s run env echo '$npm_package_name') $(date +%Y-%m-%d) */\" > lib/emoji.min.js; ./node_modules/.bin/uglifyjs -c -m -- lib/emoji.js >> lib/emoji.min.js", "test": "./node_modules/.bin/karma start karma.conf.js --single-run --log-level error", "coverage": "./node_modules/.bin/karma start karma-cover.conf.js --single-run --log-level disable", "build": "npm run compile && npm run uglify && npm run test && npm run coverage" } }