-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
37 lines (37 loc) · 957 Bytes
/
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
{
"name": "gatsby-remark-emojis",
"author": {
"name": "Mathias Schilling",
"email": "[email protected]",
"url": "https://www.matchilling.com"
},
"homepage": "https://matchilling.com",
"version": "0.4.3",
"license": "GPL-3.0",
"description": "Processes emoji in markdown and inlines `<img>` tags with the corresponding base64 corresponding of the image.",
"keywords": [
"gatsby",
"gatsby-plugin",
"markdown",
"remark",
"emoji"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/matchilling/gatsby-remark-emojis.git"
},
"bugs": {
"url": "https://github.com/matchilling/gatsby-remark-emojis/issues"
},
"main": "index.js",
"scripts": {
"prepublish": "npm test",
"publish": "NODE_OPTIONS=--max-old-space-size=10000 npm publish",
"test": "mocha index.spec.js"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"sinon": "^7.2.3"
}
}