-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.62 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
{
"name": "@fec/remark-a11y-emoji",
"version": "4.0.1",
"description": "Remark plugin to add a label to emoji and make them accessible.",
"main": "dist/remark-a11y-emoji.cjs.js",
"module": "dist/remark-a11y-emoji.esm.js",
"browser": "dist/remark-a11y-emoji.umd.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"remark",
"a11y",
"emoji",
"gatsby",
"gatsby-plugin"
],
"author": "Florian Eckerstofer <[email protected]>",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/?!(unist-util-visit|mdast-util-find-and-replace)",
"\\.pnp\\.[^\\/]+$"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"testRegex": "/__tests__/.*\\.[jt]sx?$",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"rehype-stringify": "^9.0.3",
"remark": "^13.0.0",
"remark-rehype": "^10.1.0",
"rollup": "^2.34.0"
},
"dependencies": {
"emoji-regex": "^10.0.0",
"gemoji": "^6.1.0",
"mdast-util-find-and-replace": "^1.1.1",
"unist-util-visit": "^2.0.3"
},
"engines": {
"node": ">=16.0"
},
"files": [
"dist",
"gatsby"
]
}