From d25e11bee6ca5ca523884da132d18e1400e077b9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 24 Aug 2021 14:41:48 +0200 Subject: Initial commit --- node_modules/isurl/package.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 node_modules/isurl/package.json (limited to 'node_modules/isurl/package.json') diff --git a/node_modules/isurl/package.json b/node_modules/isurl/package.json new file mode 100644 index 0000000..0852723 --- /dev/null +++ b/node_modules/isurl/package.json @@ -0,0 +1,32 @@ +{ + "name": "isurl", + "description": "Checks whether a value is a WHATWG URL.", + "version": "1.0.0", + "license": "MIT", + "author": "Steven Vachon (https://www.svachon.com/)", + "repository": "stevenvachon/isurl", + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "devDependencies": { + "chai": "^4.0.2", + "mocha": "^3.4.2", + "semver": "^5.3.0", + "universal-url": "^1.0.0" + }, + "engines": { + "node": ">= 4" + }, + "scripts": { + "test": "mocha test --check-leaks --bail" + }, + "files": [ + "index.js" + ], + "keywords": [ + "uri", + "url", + "whatwg" + ] +} -- cgit