72 lines
1.8 KiB
JSON
Executable File
72 lines
1.8 KiB
JSON
Executable File
{
|
|
"name": "remark-emoji",
|
|
"version": "4.0.1",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
},
|
|
"description": "Emoji transformer plugin for Remark",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./types/index.d.ts",
|
|
"default": "./index.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"eslint": "eslint .",
|
|
"prettier": "prettier -c '**/*.js' '**/*.ts'",
|
|
"lint": "concurrently -c auto npm:eslint npm:prettier npm:dtslint",
|
|
"dtslint": "dtslint types",
|
|
"mocha": "mocha --color test.js",
|
|
"format": "prettier -w '**/*.js' '**/*.ts'",
|
|
"test": "concurrently -c auto npm:mocha npm:dtslint"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rhysd/remark-emoji.git"
|
|
},
|
|
"keywords": [
|
|
"markdown",
|
|
"emoji",
|
|
"remark",
|
|
"plugin"
|
|
],
|
|
"types": "types/index.d.ts",
|
|
"files": [
|
|
"types/index.d.ts",
|
|
"index.js"
|
|
],
|
|
"author": "rhysd <lin90162@yahoo.co.jp>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/rhysd/remark-emoji/issues"
|
|
},
|
|
"homepage": "https://github.com/rhysd/remark-emoji#readme",
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"dtslint": "^4.2.1",
|
|
"eslint": "^8.52.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-mocha": "^10.2.0",
|
|
"eslint-plugin-n": "^16.2.0",
|
|
"eslint-plugin-security": "^1.7.1",
|
|
"mocha": "^10.2.0",
|
|
"prettier": "^3.0.3",
|
|
"remark": "^15.0.1",
|
|
"remark-autolink-headings": "^7.0.1",
|
|
"remark-github": "^12.0.0",
|
|
"remark-html": "^16.0.1",
|
|
"remark-slug": "^7.0.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@types/mdast": "^4.0.2",
|
|
"emoticon": "^4.0.1",
|
|
"mdast-util-find-and-replace": "^3.0.1",
|
|
"node-emoji": "^2.1.0",
|
|
"unified": "^11.0.4"
|
|
}
|
|
}
|