urlsearchparams
Version:
implementaion of URLSearchParams at WHATWG Living Standard https://url.spec.whatwg.org/
49 lines (48 loc) • 1.28 kB
JSON
{
"name": "urlsearchparams",
"description": "implementaion of URLSearchParams at WHATWG Living Standard https://url.spec.whatwg.org/",
"version": "0.1.1",
"author": "Jxck",
"bugs": {
"url": "https://github.com/Jxck/URLSearchParams/issues"
},
"dependencies": {
"utf8-encoding": "~0.1.x"
},
"devDependencies": {
"bower": "^1.3.12",
"typescript": "^1.4.1"
},
"files": [
"test",
"types",
".gitignore",
"README.md",
"package.json",
"urlsearchparams.d.ts",
"urlsearchparams.js",
"urlsearchparams.js.map",
"urlsearchparams.ts"
],
"homepage": "https://github.com/Jxck/URLSearchParams",
"keywords": [
"url",
"urlsearchparams",
"whatwg",
"w3c"
],
"license": "MIT",
"main": "urlsearchparams.js",
"repository": {
"type": "git",
"url": "https://github.com/Jxck/URLSearchParams"
},
"scripts": {
"bower": "bower install",
"clean": "\\rm -f *.js npm-debug.log",
"type": "cp node_modules/utf8-encoding/utf8-encoding.d.ts types/",
"prepublish": "npm run tsc",
"test": "npm run tsc && node test/test.js && \\rm -f npm-debug.log && echo open test/index.html in your browser",
"tsc": "tsc urlsearchparams.ts --target ES5 --module commonjs --sourceMap"
}
}