aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: f1e725b615587cae5aea3079daf813c08d565e69 (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
{
  "name": "md-attr-parser",
  "version": "1.3.0",
  "description": "A parser for markdown's attributes",
  "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/md-attr-parser",
  "keywords": [
    "markdown",
    "attribute",
    "plugin"
  ],
  "author": "ache <ache@ache.one>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/arobase-che/md-attr-parser/issues"
  },
  "devDependencies": {
    "@babel/cli": "^7.1.5",
    "@babel/core": "^7.1.5",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/preset-env": "^7.1.5",
    "ava": "^2.4.0",
    "cross-env": "^6.0.0",
    "del-cli": "^3.0.0",
    "xo": "^0.24.0"
  },
  "xo": {
    "space": true,
    "rules": {
      "comma-dangle": [
        "error",
        "always-multiline"
      ],
      "no-var": "warn",
      "object-shorthand": "warn"
    }
  }
}