diff options
Diffstat (limited to 'node_modules/shebang-command')
| -rw-r--r-- | node_modules/shebang-command/index.js | 19 | ||||
| -rw-r--r-- | node_modules/shebang-command/license | 21 | ||||
| -rw-r--r-- | node_modules/shebang-command/package.json | 39 | ||||
| -rw-r--r-- | node_modules/shebang-command/readme.md | 39 | 
4 files changed, 118 insertions, 0 deletions
| diff --git a/node_modules/shebang-command/index.js b/node_modules/shebang-command/index.js new file mode 100644 index 000000000..2de70b074 --- /dev/null +++ b/node_modules/shebang-command/index.js @@ -0,0 +1,19 @@ +'use strict'; +var shebangRegex = require('shebang-regex'); + +module.exports = function (str) { +	var match = str.match(shebangRegex); + +	if (!match) { +		return null; +	} + +	var arr = match[0].replace(/#! ?/, '').split(' '); +	var bin = arr[0].split('/').pop(); +	var arg = arr[1]; + +	return (bin === 'env' ? +		arg : +		bin + (arg ? ' ' + arg : '') +	); +}; diff --git a/node_modules/shebang-command/license b/node_modules/shebang-command/license new file mode 100644 index 000000000..0f8cf79c3 --- /dev/null +++ b/node_modules/shebang-command/license @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Kevin Martensson <kevinmartensson@gmail.com> (github.com/kevva) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/shebang-command/package.json b/node_modules/shebang-command/package.json new file mode 100644 index 000000000..19c9ce535 --- /dev/null +++ b/node_modules/shebang-command/package.json @@ -0,0 +1,39 @@ +{ +  "name": "shebang-command", +  "version": "1.2.0", +  "description": "Get the command from a shebang", +  "license": "MIT", +  "repository": "kevva/shebang-command", +  "author": { +    "name": "Kevin Martensson", +    "email": "kevinmartensson@gmail.com", +    "url": "github.com/kevva" +  }, +  "engines": { +    "node": ">=0.10.0" +  }, +  "scripts": { +    "test": "xo && ava" +  }, +  "files": [ +    "index.js" +  ], +  "keywords": [ +    "cmd", +    "command", +    "parse", +    "shebang" +  ], +  "dependencies": { +    "shebang-regex": "^1.0.0" +  }, +  "devDependencies": { +    "ava": "*", +    "xo": "*" +  }, +  "xo": { +    "ignores": [ +      "test.js" +    ] +  } +} diff --git a/node_modules/shebang-command/readme.md b/node_modules/shebang-command/readme.md new file mode 100644 index 000000000..16b0be4d7 --- /dev/null +++ b/node_modules/shebang-command/readme.md @@ -0,0 +1,39 @@ +# shebang-command [](https://travis-ci.org/kevva/shebang-command) + +> Get the command from a shebang + + +## Install + +``` +$ npm install --save shebang-command +``` + + +## Usage + +```js +const shebangCommand = require('shebang-command'); + +shebangCommand('#!/usr/bin/env node'); +//=> 'node' + +shebangCommand('#!/bin/bash'); +//=> 'bash' +``` + + +## API + +### shebangCommand(string) + +#### string + +Type: `string` + +String containing a shebang. + + +## License + +MIT © [Kevin Martensson](http://github.com/kevva) | 
