forked from markdown-it/markdown-it-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "markdown-it-emoji",
"version": "2.0.0",
"description": "Emoji plugin for markdown-it markdown parser.",
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"emoji",
"emojies",
"emoticon",
"emoticons"
],
"repository": "markdown-it/markdown-it-emoji",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha",
"coverage": "npm run test && nyc report --reporter html",
"report-coveralls": "nyc report --reporter=text-lcov | coveralls",
"browserify": "rollup -c support/rollup.config.js"
},
"files": [
"index.js",
"light.js",
"bare.js",
"lib/",
"dist/"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"markdown-it": "^12.0.0",
"markdown-it-testgen": "~0.1.0",
"mocha": "8.1.3",
"nyc": "^15.1.0",
"rollup": "^2.29.0",
"rollup-plugin-terser": "^7.0.2"
}
}