aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 1b3192726cbb1e0e2c80e4978e1e97aa52d5aa41 (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": "remark-special-box",
  "version": "0.1.0",
  "description": "A remark plugin for Markdown that parse special blox",
  "main": "app.js",
  "scripts": {
    "pretest": "xo",
    "test": "ava",
    "start": "node app.js"
  },
  "dependencies": {
    "unist-util-visit": "^1.1.3"
  },
  "author": "ache",
  "license": "MIT",
  "keywords": [
    "box",
    "remark"
  ],
  "devDependencies": {
    "ava": "^0.25.0",
    "rehype-raw": "^2.0.0",
    "rehype-stringify": "^3.0.0",
    "remark-parse": "^5.0.0",
    "remark-rehype": "^3.0.0",
    "unified": "^6.1.6",
    "xo": "^0.18.2"
  },
  "xo": {
    "space": true,
    "rules": {
      "comma-dangle": [
        "error",
        "always-multiline"
      ]
    }
  }
}