url-js
Version:
Simple URL parser, similar to DOM URL
73 lines (72 loc) • 1.52 kB
JSON
{
"name": "url-js",
"version": "2.1.0",
"description": "Simple URL parser, similar to DOM URL",
"main": "dist/url.js",
"module": "url.js",
"esnext": "url.js",
"unpkg": "dist/url.min.js",
"reveal": true,
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest --forceExit",
"test-cov": "npm run test -- --coverage",
"verup": "verup"
},
"verup": {
"files": [
"package-lock.json",
"bower.json",
"url/URL.js",
"url/URL.d.ts",
"url.js",
"url.d.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/URL.js.git"
},
"keywords": [
"URL",
"DOM",
"Parse",
"Parser",
"URI",
"http",
"origin",
"hostname",
"pathname",
"URLJS"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/URL.js/issues"
},
"homepage": "https://github.com/duzun/URL.js#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"jest": "^27.4.3",
"rollup": "^2.53.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"verup": "^1.7.1"
},
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false
}
}