aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 302afaf030bb8cefbb97c3cddc3893c6fe773301 (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
{
  "name": "remark-seclink",
  "version": "1.0.0",
  "description": "A remark plugin to secure URI of link from JS XSS",
  "main": "dist/index.js",
  "scripts": {
    "pretest": "xo",
    "prepare": "del-cli dist && cross-env BABEL_ENV=production babel src --out-dir dist",
    "test": "ava"
  },
  "repository": {
    "type": "git",
    "url": "https://git.ache.one/remark-seclink"
  },
  "author": "ache <ache@ache.one>",
  "license": "ISC",
  "dependencies": {
    "unist-util-visit": "^1.4.0"
  },
  "xo": {
    "space": true,
    "rules": {
      "comma-dangle": [
        "error",
        "always-multiline"
      ]
    }
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.3.4",
    "@babel/preset-env": "^7.3.4",
    "ava": "^1.2.1",
    "cross-env": "^5.2.0",
    "del-cli": "^1.1.0",
    "remark": "^10.0.1",
    "xo": "^0.24.0"
  }
}