Files
vanillajs-seed/node_modules/@ungap/url-search-params/package.json
2020-06-08 08:50:28 +02:00

71 lines
2.3 KiB
JSON

{
"_from": "@ungap/url-search-params@^0.2.0",
"_id": "@ungap/url-search-params@0.2.0",
"_inBundle": false,
"_integrity": "sha512-KVPTXfdofx9g/1OnO4js0Sos/ITghfNxw+DHJUyXG+X83KEMyJV+fQ6zyd2jTUwqall/SCJlV7p/HDqJbbF5WQ==",
"_location": "/@ungap/url-search-params",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@ungap/url-search-params@^0.2.0",
"name": "@ungap/url-search-params",
"escapedName": "@ungap%2furl-search-params",
"scope": "@ungap",
"rawSpec": "^0.2.0",
"saveSpec": null,
"fetchSpec": "^0.2.0"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/@ungap/url-search-params/-/url-search-params-0.2.0.tgz",
"_shasum": "8942763e5d31330fcd5a04fdbf1c66a5eb97c20e",
"_spec": "@ungap/url-search-params@^0.2.0",
"_where": "D:\\Projects\\vanillajs-seed",
"author": {
"name": "Andrea Giammarchi"
},
"bugs": {
"url": "https://github.com/ungap/url-search-params/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "The URLSearchParams polyfill.",
"devDependencies": {
"coveralls": "^3.1.0",
"nyc": "^15.0.1",
"uglify-js": "^3.9.1"
},
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"homepage": "https://github.com/ungap/url-search-params#readme",
"keywords": [
"URLSearchParams",
"polyfill",
"ungap"
],
"license": "ISC",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"name": "@ungap/url-search-params",
"repository": {
"type": "git",
"url": "git+https://github.com/ungap/url-search-params.git"
},
"scripts": {
"build": "npm run cjs && npm run esm && npm run min && npm run test && npm run size",
"cjs": "cp index.js cjs/ && echo 'module.exports = self.URLSearchParams;' >> cjs/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"esm": "cp index.js esm/ && echo 'export default self.URLSearchParams;' >> esm/index.js",
"min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js",
"size": "cat index.js | wc -c && cat min.js | wc -c && gzip -c9 min.js | wc -c && cat min.js | brotli | wc -c",
"test": "nyc node test/index.js"
},
"type": "module",
"unpkg": "min.js",
"version": "0.2.0"
}