mirror of
https://github.com/KevinMidboe/zoff.git
synced 2026-01-07 01:55:34 +00:00
54 lines
3.2 KiB
JSON
54 lines
3.2 KiB
JSON
{
|
|
"name": "gemoji",
|
|
"version": "0.1.2",
|
|
"description": "Named and unicode Gemoji",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"gemoji",
|
|
"emoji",
|
|
"unicode",
|
|
"name",
|
|
"shortcode"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wooorm/gemoji.git"
|
|
},
|
|
"author": {
|
|
"name": "Titus Wormer",
|
|
"email": "tituswormer@gmail.com"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^0.8.0",
|
|
"istanbul": "^0.3.0",
|
|
"jscs": "^1.6.0",
|
|
"markdown-table": "0.0.1",
|
|
"mocha": "^1.20.0"
|
|
},
|
|
"scripts": {
|
|
"test": "node_modules/.bin/_mocha --reporter spec --check-leaks -u exports spec/gemoji.spec.js",
|
|
"test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/gemoji.spec.js",
|
|
"lint": "npm run-script lint-api && npm run-script lint-test && npm run-script lint-style",
|
|
"lint-api": "node_modules/.bin/eslint index.js build-data.js --env node --env browser --rule 'quotes: [2, single]'",
|
|
"lint-test": "node_modules/.bin/eslint spec/gemoji.spec.js --env node --env mocha --rule 'quotes: [2, single], no-loop-func: false'",
|
|
"lint-style": "node_modules/.bin/jscs index.js build-data.js build-supported-gemoji.js spec/gemoji.spec.js --reporter=inline",
|
|
"scrape-data": "curl --connect-timeout 5 --max-time 10 -H 'Accept: application/vnd.github.v3.raw' -L https://api.github.com/repos/github/gemoji/contents/db/emoji.json -o data/emoji.json || exit 0",
|
|
"build-data": "node build-data.js",
|
|
"build-supported-gemoji": "node build-supported-gemoji.js",
|
|
"prepublish": "npm run scrape-data && npm run build-data && npm run build-supported-gemoji",
|
|
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- spec/gemoji.spec.js",
|
|
"make": "npm run-script lint && npm run-script coverage && npm run build-supported-gemoji"
|
|
},
|
|
"readme": "# gemoji [](https://travis-ci.org/wooorm/gemoji) [](https://coveralls.io/r/wooorm/gemoji?branch=master)\n\nNamed and unicode Gemoji.\n\n## Installation\n\nnpm:\n```sh\n$ npm install gemoji\n```\n\nComponent:\n```sh\n$ component install wooorm/gemoji\n```\n\nBower:\n```sh\n$ bower install gemoji\n```\n\n## Usage\n\n```js\nvar gemoji = require('gemoji');\n\ngemoji.name[\"cat\"]; // \"🐱\"\ngemoji.unicode[\"🐶\"]; // \"dog\"\ngemoji.unicode[\"\\uD83D\\uDCA9\"]; // \"poop\"\n```\n\n## Supported Gemoji\n\nSee [Supported-Gemoji.md](Supported-Gemoji.md).\n\n## Data\n\nThe emoji list (`./data/emoji.json`) is crawled from [github/gemoji](https://github.com/github/gemoji).\nSee its [license](https://github.com/github/gemoji/blob/2d799338d94a223cd341d92de3a9848d5368f9ef/LICENSE) for more information.\n\nNo images are included in this repository—the copyrighted material may or may not be available on the users computer.\n\n## License\n\nMIT © Titus Wormer\n",
|
|
"readmeFilename": "Readme.md",
|
|
"bugs": {
|
|
"url": "https://github.com/wooorm/gemoji/issues"
|
|
},
|
|
"_id": "gemoji@0.1.2",
|
|
"dist": {
|
|
"shasum": "3465e49abead613a2415bc8e4a77f12cc716f426"
|
|
},
|
|
"_from": "gemoji@^0.1.0",
|
|
"_resolved": "https://registry.npmjs.org/gemoji/-/gemoji-0.1.2.tgz"
|
|
}
|