vishalseshagiri 92fa8c1d42 Port forwarding enabled+start-container.sh+setup.sh
Former-commit-id: e70428e7b32c1eb74a376ab5efe195d2790ffc5c
2017-07-24 08:52:16 +00:00

1 line
5.9 KiB
JSON

{"_id":"slash","_rev":"26-f58f095ba1901c3f858b5b40f3fee4ff","name":"slash","description":"Convert Windows backslash paths to slash paths","dist-tags":{"latest":"1.0.0"},"versions":{"0.1.0":{"name":"slash","version":"0.1.0","description":"Convert Windows backslash paths to slash paths","keywords":["path","seperator","sep","slash","backslash","windows","win"],"homepage":"https://github.com/sindresorhus/slash","bugs":{"url":"https://github.com/sindresorhus/slash/issues"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"main":"slash.js","repository":{"type":"git","url":"git://github.com/sindresorhus/slash.git"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.11.0"},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT"}],"files":["slash.js"],"_id":"slash@0.1.0","dist":{"shasum":"1726ee854d6a95c056dc697ec8d5be9a43926243","tarball":"https://registry.npmjs.org/slash/-/slash-0.1.0.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.1.1":{"name":"slash","version":"0.1.1","description":"Convert Windows backslash paths to slash paths","keywords":["path","seperator","sep","slash","backslash","windows","win"],"homepage":"https://github.com/sindresorhus/slash","bugs":{"url":"https://github.com/sindresorhus/slash/issues"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"main":"slash.js","repository":{"type":"git","url":"git://github.com/sindresorhus/slash.git"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"~1.11.0"},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT"}],"files":["slash.js"],"_id":"slash@0.1.1","dist":{"shasum":"e3b93c40a94a547a246367b71b8c31a793521a65","tarball":"https://registry.npmjs.org/slash/-/slash-0.1.1.tgz"},"_from":".","_npmVersion":"1.3.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.1.3":{"name":"slash","version":"0.1.3","description":"Convert Windows backslash paths to slash paths","keywords":["path","seperator","sep","slash","backslash","windows","win"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"main":"slash.js","repository":{"type":"git","url":"git://github.com/sindresorhus/slash"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.8.0"},"license":"MIT","files":["slash.js"],"bugs":{"url":"https://github.com/sindresorhus/slash/issues"},"homepage":"https://github.com/sindresorhus/slash","_id":"slash@0.1.3","dist":{"shasum":"aa710c8ef50b8e1d187ad6cff46f38c656ba0e57","tarball":"https://registry.npmjs.org/slash/-/slash-0.1.3.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"1.0.0":{"name":"slash","version":"1.0.0","description":"Convert Windows backslash paths to slash paths","keywords":["path","seperator","sep","slash","backslash","windows","win"],"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"repository":{"type":"git","url":"git://github.com/sindresorhus/slash"},"scripts":{"test":"mocha"},"devDependencies":{"mocha":"*"},"engines":{"node":">=0.10.0"},"license":"MIT","files":["index.js"],"gitHead":"c801dd4568ad9380b534067eabe88942394f82ff","bugs":{"url":"https://github.com/sindresorhus/slash/issues"},"homepage":"https://github.com/sindresorhus/slash","_id":"slash@1.0.0","_shasum":"c41f2f6c39fc16d1cd17ad4b5d896114ae470d55","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"dist":{"shasum":"c41f2f6c39fc16d1cd17ad4b5d896114ae470d55","tarball":"https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"},"directories":{}}},"readme":"# slash [![Build Status](https://travis-ci.org/sindresorhus/slash.svg?branch=master)](https://travis-ci.org/sindresorhus/slash)\n\n> Convert Windows backslash paths to slash paths: `foo\\\\bar` ➔ `foo/bar`\n\n[Forward-slash paths can be used in Windows](http://superuser.com/a/176395/6877) as long as they're not extended-length paths and don't contain any non-ascii characters.\n\nThis was created since the `path` methods in Node outputs `\\\\` paths on Windows.\n\n\n## Install\n\n```sh\n$ npm install --save slash\n```\n\n\n## Usage\n\n```js\nvar path = require('path');\nvar slash = require('slash');\n\nvar str = path.join('foo', 'bar');\n// Unix => foo/bar\n// Windows => foo\\\\bar\n\nslash(str);\n// Unix => foo/bar\n// Windows => foo/bar\n```\n\n\n## API\n\n### slash(path)\n\nType: `string`\n\nAccepts a Windows backslash path and returns a slash path.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"time":{"modified":"2017-05-21T09:35:24.980Z","created":"2013-07-18T23:34:04.300Z","0.1.0":"2013-07-18T23:34:07.348Z","0.1.1":"2013-10-08T19:09:41.668Z","0.1.3":"2014-04-30T22:47:43.354Z","1.0.0":"2014-08-13T10:15:02.780Z"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"repository":{"type":"git","url":"git://github.com/sindresorhus/slash"},"users":{"passy":true,"tommyzzm":true,"itonyyo":true,"lshearer":true,"iamstarkov":true,"huhgawz":true,"wujr5":true,"cblumer":true,"balazserdos":true},"homepage":"https://github.com/sindresorhus/slash","keywords":["path","seperator","sep","slash","backslash","windows","win"],"bugs":{"url":"https://github.com/sindresorhus/slash/issues"},"license":"MIT","readmeFilename":"readme.md","_attachments":{},"_etag":"W/\"59215f5c-1716\"","_lastModified":"Sun, 21 May 2017 09:35:24 GMT","_cached":true}