🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

parse-uri

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-uri - npm Package Compare versions

Comparing version

to
1.0.4

src/index.js

48

package.json

@@ -5,4 +5,4 @@ {

"homepage": "https://github.com/Kikobeats/parse-uri",
"version": "1.0.3",
"main": "./index.js",
"version": "1.0.4",
"main": "src/index.js",
"author": {

@@ -24,7 +24,18 @@ "email": "josefrancisco.verdu@gmail.com",

],
"dependencies": {},
"devDependencies": {
"mocha": "latest",
"should": "latest",
"standard": "latest"
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"c8": "latest",
"ci-publish": "latest",
"conventional-github-releaser": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"prettier-standard": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest",
"standard-version": "latest"
},

@@ -35,11 +46,28 @@ "engines": {

"files": [
"index.js"
"src"
],
"scripts": {
"clean": "rm -rf node_modules",
"lint": "standard lib",
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"lint": "standard",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
"prerelease": "npm run update:check && npm run contributors",
"pretest": "npm run lint",
"test": "mocha"
"release": "standard-version -a",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"test": "c8 ava",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
"license": "MIT"
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}
# parse-uri
![Last version](https://img.shields.io/github/tag/Kikobeats/parse-uri.svg?style=flat-square)
[![Build Status](http://img.shields.io/travis/Kikobeats/parse-uri/master.svg?style=flat-square)](https://travis-ci.org/Kikobeats/parse-uri)
[![Dependency status](http://img.shields.io/david/Kikobeats/parse-uri.svg?style=flat-square)](https://david-dm.org/Kikobeats/parse-uri)
[![Dev Dependencies Status](http://img.shields.io/david/dev/Kikobeats/parse-uri.svg?style=flat-square)](https://david-dm.org/Kikobeats/parse-uri#info=devDependencies)
[![NPM Status](http://img.shields.io/npm/dm/parse-uri.svg?style=flat-square)](https://www.npmjs.org/package/parse-uri)
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/Kikobeats)

@@ -10,0 +6,0 @@ > Lightweight module for parsing an URI Based in [Steven Levithan](http://blog.stevenlevithan.com/archives/parseuri) method.