-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "remark-emoji",
"version": "5.0.1",
"type": "module",
"engines": {
"node": ">=18"
},
"description": "Emoji transformer plugin for Remark",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
}
}
},
"scripts": {
"eslint": "eslint '*.ts' eslint.config.mjs",
"prettier": "prettier -c '*.ts' eslint.config.mjs",
"tsc-eslint": "tsc --pretty -p tsconfig.eslint.json",
"lint": "concurrently -c auto npm:eslint npm:prettier npm:tsc-eslint",
"build": "tsc --pretty -p . -d",
"watch": "tsc -w -p .",
"format": "prettier -w '*.ts' eslint.config.mjs",
"mocha": "mocha --color test.js",
"test": "concurrently -m 1 -c auto npm:build npm:mocha",
"prepare": "concurrently -m 1 -c auto npm:lint npm:build npm:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysd/remark-emoji.git"
},
"keywords": [
"markdown",
"emoji",
"remark",
"plugin"
],
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"index.js.map",
"LICENSE"
],
"author": "rhysd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysd/remark-emoji/issues"
},
"homepage": "https://github.com/rhysd/remark-emoji#readme",
"dependencies": {
"@types/mdast": "^4.0.4",
"emoticon": "^4.0.1",
"mdast-util-find-and-replace": "^3.0.1",
"node-emoji": "^2.1.3",
"unified": "^11.0.4"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-mocha": "^10.4.0",
"@types/eslint-plugin-security": "^3.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"concurrently": "^8.2.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-security": "^3.0.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-github": "^12.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
}
}