-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "@carrotsearch/gatsby-transformer-html",
"description": "A Gatsby transformer plugin for authoring content in HTML. Supports ToC generation, responsive images, section anchors and Prism.JS code highlighting.",
"version": "1.0.29",
"main": "./index.js",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-transformer-plugin",
"html",
"responsive images",
"prismjs"
],
"repository": "https://github.com/carrotsearch/gatsby-transformer-html",
"bugs": {
"url": "https://github.com/carrotsearch/gatsby-transformer-html/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "mocha --recursive 'src/**/*.test.js'",
"test-watch": "mocha --recursive 'src/**/*.test.js' -w"
},
"peerDependencies": {
"gatsby": "^2.6.0"
},
"dependencies": {
"cheerio": "1.0.0-rc.3",
"gatsby-plugin-sharp": "2.6.36",
"gatsby-remark-prismjs": "3.5.13",
"lodash": "4.17.20",
"prismjs": "1.21.0"
},
"devDependencies": {
"mocha": "8.1.3",
"must": "0.13.4"
},
"license": "MIT"
}