summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-headings/package.json
blob: 75b25edf216c6e03902db5a2e35f33060867ae96 (plain)
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
{
  "name": "gitbook-plugin-headings",
  "description": "Automatically add anchors to headings",
  "main": "index.js",
  "browser": "./_assets/plugin.js",
  "version": "4.0.0-alpha.2",
  "dependencies": {
    "classnames": "^2.2.5",
    "gitbook-core": "^4.0.0-alpha.2"
  },
  "devDependencies": {
    "gitbook-plugin": "^4.0.0-alpha.2"
  },
  "engines": {
    "gitbook": ">=3.0.0"
  },
  "scripts": {
    "build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js",
    "prepublish": "npm run build-js"
  },
  "homepage": "https://github.com/GitbookIO/gitbook",
  "repository": {
    "type": "git",
    "url": "https://github.com/GitbookIO/gitbook.git"
  },
  "bugs": {
    "url": "https://github.com/GitbookIO/gitbook/issues"
  },
  "gitbook": {
    "properties": {
      "position": {
        "type": "string",
        "title": "Position of anchors",
        "default": "left"
      }
    }
  }
}