url-query-builder
Advanced tools
Comparing version 3.0.1 to 3.0.2
{ | ||
"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(), |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0
1
28042
24
- Removed@types/assert@^1.4.3
- Removed@types/assert@1.5.11(transitive)