smile2emoji
Version:
Plugin to convert from text smile to emoticons. Emoji from punctuation
109 lines (108 loc) • 3.06 kB
JSON
{
"name": "smile2emoji",
"version": "3.20.0",
"description": "Plugin to convert from text smile to emoticons. Emoji from punctuation",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"files": [
"lib/",
"index.d.ts"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"build:types": "tsc --emitDeclarationOnly",
"build": "tsc && babel src --out-file lib/index.cjs --extensions \".ts,.tsx\"",
"prepare": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/emish89/smile2emoji"
},
"keywords": [
"emoji",
"npm",
"module",
"node",
"emoticons",
"smile",
"smiley",
"text",
"punctuation",
"javascript"
],
"author": "Federico Ballarini <emish89@yahoo.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emish89/smile2emoji/issues"
},
"homepage": "https://github.com/emish89/smile2emoji#readme",
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/eslint-parser": "7.28.6",
"@babel/preset-env": "7.28.6",
"@babel/preset-typescript": "7.28.5",
"@babel/register": "7.28.6",
"@eslint/js": "^9.39.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.3",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.53.1",
"babel-plugin-add-module-exports": "1.0.4",
"babel-preset-minify": "0.5.2",
"chai": "6.2.2",
"conventional-changelog-conventionalcommits": "9.1.0",
"cross-env": "10.1.0",
"eslint": "9.39.2",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"globals": "^17.0.0",
"mocha": "11.7.5",
"nyc": "17.1.0",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.53.1"
},
"overrides": {
"@typescript-eslint/eslint-plugin": {
"eslint": "$eslint"
},
"eslint-config-airbnb": {
"eslint": "$eslint"
},
"eslint-plugin-import": {
"eslint": "$eslint"
},
"eslint-plugin-jsx-a11y": {
"eslint": "$eslint"
},
"typescript-eslint": {
"eslint": "$eslint"
}
},
"type": "module"
}