mirror of
https://github.com/Qortal/emoji-picker-js.git
synced 2025-02-01 07:42:16 +00:00
68 lines
2.1 KiB
JSON
68 lines
2.1 KiB
JSON
|
{
|
||
|
"name": "emoji-picker-js",
|
||
|
"version": "0.1.0",
|
||
|
"description": "An Emoji Picker and Parser",
|
||
|
"keywords": [
|
||
|
"emoji",
|
||
|
"javascript"
|
||
|
],
|
||
|
"main": "dist/index.js",
|
||
|
"module": "dist/index.js",
|
||
|
"types": "index.d.ts",
|
||
|
"scripts": {
|
||
|
"build": "cross-env NODE_ENV=production rollup -c",
|
||
|
"watch": "rollup -cw",
|
||
|
"test": "jest src/**.test.ts",
|
||
|
"test:watch": "jest --watchAll",
|
||
|
"lint": "eslint src/*.ts",
|
||
|
"prettify": "prettier src/*.ts --write"
|
||
|
},
|
||
|
"author": "LOTW <lotw7270@protonmail.com>",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/lotw7277/emoji-picker-js.git"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.10.2",
|
||
|
"@babel/preset-env": "^7.10.2",
|
||
|
"@babel/preset-typescript": "^7.10.1",
|
||
|
"@rollup/plugin-replace": "^2.3.3",
|
||
|
"@rollup/plugin-typescript": "^4.1.2",
|
||
|
"@types/jest": "^25.2.3",
|
||
|
"@typescript-eslint/eslint-plugin": "^3.1.0",
|
||
|
"@typescript-eslint/parser": "^3.1.0",
|
||
|
"babel-jest": "^26.0.1",
|
||
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^7.2.0",
|
||
|
"eslint-config-prettier": "^6.11.0",
|
||
|
"eslint-plugin-prettier": "^3.1.3",
|
||
|
"jest": "^26.0.1",
|
||
|
"prettier": "^2.0.5",
|
||
|
"rollup": "^2.22.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-commonjs": "^10.1.0",
|
||
|
"rollup-plugin-node-resolve": "^5.2.0",
|
||
|
"rollup-plugin-postcss": "^3.1.2",
|
||
|
"rollup-plugin-terser": "^6.1.0",
|
||
|
"ts-jest": "^26.1.0",
|
||
|
"typescript": "^3.9.5"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@fortawesome/fontawesome-svg-core": "^1.2.28",
|
||
|
"@fortawesome/free-regular-svg-icons": "^5.13.0",
|
||
|
"@fortawesome/free-solid-svg-icons": "^5.13.0",
|
||
|
"@popperjs/core": "^2.4.0",
|
||
|
"focus-trap": "^5.1.0",
|
||
|
"fuzzysort": "^1.1.4",
|
||
|
"tiny-emitter": "^2.1.0",
|
||
|
"tslib": "^2.0.0",
|
||
|
"twemoji": "^13.0.1"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"index.d.ts"
|
||
|
]
|
||
|
}
|