emish89/smile2emoji

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "smile2emoji",
  "version": "3.12.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.24.7",
    "@babel/eslint-parser": "7.24.7",
    "@babel/preset-env": "7.24.7",
    "@babel/preset-typescript": "7.24.7",
    "@babel/register": "7.24.6",
    "@eslint/js": "^9.3.0",
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/commit-analyzer": "13.0.0",
    "@semantic-release/git": "10.0.1",
    "@semantic-release/github": "10.0.6",
    "@semantic-release/npm": "12.0.1",
    "@types/mocha": "^10.0.6",
    "@typescript-eslint/eslint-plugin": "7.13.0",
    "@typescript-eslint/parser": "7.13.0",
    "babel-plugin-add-module-exports": "1.0.4",
    "babel-preset-minify": "0.5.2",
    "chai": "5.1.1",
    "conventional-changelog-conventionalcommits": "8.0.0",
    "cross-env": "7.0.3",
    "eslint": "9.4.0",
    "eslint-config-airbnb": "19.0.4",
    "eslint-plugin-import": "2.29.1",
    "eslint-plugin-jsx-a11y": "6.8.0",
    "globals": "^15.3.0",
    "mocha": "10.4.0",
    "nyc": "17.0.0",
    "prettier": "3.3.2",
    "rimraf": "5.0.7",
    "ts-node": "^10.9.2",
    "typescript": "5.4.5",
    "typescript-eslint": "^7.10.0"
  },
  "overrides": {
    "@typescript-eslint/eslint-plugin": {
      "eslint": "$eslint"
    },
    "eslint-config-airbnb": {
      "eslint": "$eslint"
    },
    "typescript-eslint": {
      "eslint": "$eslint"
    }
  },
  "type": "module"
}