{
  "name": "native-url",
  "version": "0.1.1",
  "description": "Brings the node url api layer to whatwg-url class",
  "source": "src/index.js",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "scripts": {
    "build": "microbundle",
    "test": "yarn run build && jest"
  },
  "author": "Janicklas Ralph",
  "license": "MIT",
  "dependencies": {
    "querystring": "^0.2.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/janicklas-ralph/native-url.git"
  },
  "bugs": {
    "url": "https://github.com/janicklas-ralph/native-url/issues"
  },
  "homepage": "https://github.com/janicklas-ralph/native-url#readme",
  "keywords": [
    "url",
    "uri",
    "normalization",
    "normalisation",
    "query",
    "querystring",
    "whatwg-url",
    "parse",
    "format",
    "resolve",
    "resolveObject"
  ],
  "devDependencies": {
    "husky": "^3.0.5",
    "jest": "^24.9.0",
    "lint-staged": "^9.2.5",
    "microbundle": "^0.11.0",
    "prettier": "^1.18.2"
  },
  "lint-staged": {
    "linters": {
      "{src,tests}/**/*.js": [
        "prettier --write",
        "git add"
      ]
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn run test && lint-staged"
    }
  }
}
