Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

url-query-builder

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

url-query-builder - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

30

package.json
{
"name": "url-query-builder",
"version": "3.0.1",
"version": "3.0.2",
"description": "Simple add/change/delete url query",

@@ -23,18 +23,19 @@ "main": "dist/index.cjs.js",

"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/assert": "^1.4.3",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"assert": "^2.0.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.4.0",
"mocha": "^6.2.0",
"eslint": "^6.5.1",
"mocha": "^6.2.2",
"pre-commit": "^1.2.2",
"rollup": "^1.21.3",
"rollup": "^1.25.1",
"rollup-plugin-babel": "^4.3.3",

@@ -45,4 +46,4 @@ "rollup-plugin-commonjs": "^10.1.0",

"should": "^13.2.3",
"ts-node": "^8.3.0",
"typescript": "^3.6.3"
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},

@@ -66,6 +67,3 @@ "keywords": [

"test"
],
"dependencies": {
"@types/assert": "^1.4.3"
}
]
}

@@ -20,3 +20,3 @@ # URL Query Builder

// create instance
let q = new URLQueryBuilder('example.com') // => example.com?
const q = new URLQueryBuilder('example.com') // => example.com?
// with query in url

@@ -23,0 +23,0 @@ const q1 = new URLQueryBuilder('example.com?a=b') // => example.com?a=b

@@ -22,3 +22,3 @@ import commonjs from 'rollup-plugin-commonjs';

// Allows node_modules resolution
resolve({ extensions }),
resolve({extensions}),

@@ -29,3 +29,3 @@ // Allow bundling cjs modules. Rollup doesn't understand cjs

// Compile TypeScript/JavaScript files
babel({ extensions, include: ['src/**/*'] }),
babel({extensions, include: ['src/**/*']}),

@@ -32,0 +32,0 @@ terser(),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc