aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: a845b45f6e1f80b4005dcac5480862bc65b427f0 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "name": "remark-attr",
  "version": "0.7.0",
  "description": "Add support of custom attributes to Markdown syntax.",
  "main": "dist/index.js",
  "scripts": {
    "pretest": "xo",
    "prepare": "del-cli dist && cross-env BABEL_ENV=production babel src --out-dir dist",
    "test": "ava"
  },
  "repository": "github:arobase-che/remark-attr",
  "keywords": [
    "markdown",
    "attribute",
    "plugin"
  ],
  "author": "ache <ache@ache.one>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/arobase-che/remark-attr/issues"
  },
  "homepage": "https://github.com/arobase-che/remark-attr#readme",
  "devDependencies": {
    "ava": "^0.25.0",
    "babel-cli": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "cross-env": "^5.1.4",
    "del-cli": "^1.1.0",
    "parse5": "^5.0.0",
    "rehype-raw": "^3.0.0",
    "rehype-stringify": "^4.0.0",
    "remark-parse": "^5.0.0",
    "remark-rehype": "^3.0.1",
    "unified": "^7.0.0",
    "xo": "^0.23.0"
  },
  "xo": {
    "space": true,
    "rules": {
      "comma-dangle": [
        "error",
        "always-multiline"
      ]
    }
  },
  "dependencies": {
    "html-element-attributes": "^2.0.0",
    "md-attr-parser": "^1.1.6"
  }
}