1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "parse-url",
- "version": "6.0.0",
- "description": "An advanced url parser supporting git urls too.",
- "main": "lib/index.js",
- "directories": {
- "example": "example",
- "test": "test"
- },
- "scripts": {
- "test": "node test"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/IonicaBizau/parse-url.git"
- },
- "keywords": [
- "parse",
- "url",
- "node",
- "git",
- "advanced"
- ],
- "author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/IonicaBizau/parse-url/issues"
- },
- "homepage": "https://github.com/IonicaBizau/parse-url",
- "devDependencies": {
- "tester": "^1.3.1"
- },
- "dependencies": {
- "is-ssh": "^1.3.0",
- "normalize-url": "^6.1.0",
- "parse-path": "^4.0.0",
- "protocols": "^1.4.0"
- },
- "files": [
- "bin/",
- "app/",
- "lib/",
- "dist/",
- "src/",
- "scripts/",
- "resources/",
- "menu/",
- "cli.js",
- "index.js",
- "bloggify.js",
- "bloggify.json",
- "bloggify/"
- ],
- "blah": {
- "description": [
- "For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."
- ]
- }
- }
|