forked from signalwerk/gatsby-remark-table-of-contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.9 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
{
"name": "gatsby-remark-table-of-contents",
"version": "1.0.0",
"author": "Stefan Huber, Signalwerk GmbH",
"description": "gatsby remark plugin to generate table of contents",
"keywords": [
"gatsby",
"remark",
"gatsby-plugin",
"table of contents",
"toc"
],
"license": "MIT",
"main": "dist/gatsby-remark-table-of-contents.cjs.js",
"module": "dist/gatsby-remark-table-of-contents.esm.js",
"browser": "dist/gatsby-remark-table-of-contents.umd.js",
"homepage": "https://github.com/signalwerk/gatsby-remark-table-of-contents#readme",
"bugs": {
"url": "https://github.com/signalwerk/gatsby-remark-table-of-contents/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/signalwerk/gatsby-remark-table-of-contents.git"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-node-resolve": "^10.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier-eslint": "^12.0.0",
"remark": "^13.0.0",
"rollup": "^2.33.3",
"rollup-plugin-babel": "^4.4.0"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint",
"build:watch": "rollup -c -w",
"jest": "jest",
"jest:coverage": "npm run jest -- --coverage --coverageReporters='json-summary'",
"badge:update": "npm run jest:coverage && npx istanbul-badges-readme",
"test": "npm run lint && npm run jest",
"test:watch": "npm run jest -- --watch",
"publish": "npm run jest:coverage && npx istanbul-badges-readme && npm run test && npm run build && npm publish"
},
"files": [
"dist"
],
"dependencies": {
"js-yaml": "^3.14.1",
"mdast-util-toc": "^5.1.0"
}
}