1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-06-29 01:18:52 +00:00
twemoji/package.json

52 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
2022-03-31 00:17:21 +00:00
"version": "14.0.2",
"name": "twemoji",
2016-08-26 08:19:55 +00:00
"license": [
"MIT",
"CC-BY-4.0"
],
"description": "A Unicode standard based way to implement emoji across all platforms.",
"homepage": "https://github.com/twitter/twemoji",
"keywords": [
"emoji",
"DOM",
"parser",
"images",
"retina",
"Twitter",
"unicode"
],
"devDependencies": {
2019-05-29 20:55:21 +00:00
"npm-run-all": "^4.1.5",
2019-05-29 23:30:35 +00:00
"phantomjs-prebuilt": "^2.1.16",
2018-07-19 07:24:12 +00:00
"uglify-js": "2.6.2"
},
"author": {
"name": "Twitter, Inc.",
"web": "https://github.com/twitter/"
},
"repository": {
"type": "git",
"url": "git://github.com/twitter/twemoji.git"
},
"main": "./dist/twemoji.npm.js",
"module": "./dist/twemoji.esm.js",
"unpkg": "./dist/twemoji.min.js",
"scripts": {
"build": "./scripts/build.js",
"deploy": "./scripts/deploy.sh gh-pages",
"test": "phantomjs ./src/test/testrunner.js",
"prepublishOnly": "run-s build test deploy"
2019-04-04 00:38:15 +00:00
},
"dependencies": {
"fs-extra": "^8.0.1",
2019-06-27 23:45:07 +00:00
"jsonfile": "^5.0.0",
2022-03-11 08:03:51 +00:00
"twemoji-parser": "14.0.0",
2019-06-27 23:45:07 +00:00
"universalify": "^0.1.2"
},
"files": [
"dist/twemoji*.js",
"index.d.ts"
]
}