Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
22
my-app/node_modules/parse-node-version/LICENSE
generated
vendored
Executable file
22
my-app/node_modules/parse-node-version/LICENSE
generated
vendored
Executable file
|
@ -0,0 +1,22 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018 Blaine Bublitz <blaine.bublitz@gmail.com> and Eric Schoffstall <yo@contra.io>
|
||||
|
||||
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.
|
||||
|
51
my-app/node_modules/parse-node-version/README.md
generated
vendored
Executable file
51
my-app/node_modules/parse-node-version/README.md
generated
vendored
Executable file
|
@ -0,0 +1,51 @@
|
|||
<p align="center">
|
||||
<a href="http://gulpjs.com">
|
||||
<img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
# parse-node-version
|
||||
|
||||
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Travis Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]
|
||||
|
||||
Turn node's process.version into something useful.
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var nodeVersion = require('parse-node-version')(process.version);
|
||||
|
||||
console.log(
|
||||
nodeVersion.major,
|
||||
nodeVersion.minor,
|
||||
nodeVersion.patch,
|
||||
nodeVersion.pre,
|
||||
nodeVersion.build
|
||||
);
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### parseVersion(nodeVersionString)
|
||||
|
||||
Takes a node version string (usually `process.version`) and returns an object with the `major`/`minor`/`patch` (which will all be numbers) and `pre`/`build` keys (which will always be a string). If the version doesn't contain any pre-release or build information, the properties will be returned as empty string.
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
|
||||
[downloads-image]: http://img.shields.io/npm/dm/parse-node-version.svg
|
||||
[npm-url]: https://www.npmjs.com/package/parse-node-version
|
||||
[npm-image]: http://img.shields.io/npm/v/parse-node-version.svg
|
||||
|
||||
[travis-url]: https://travis-ci.org/gulpjs/parse-node-version
|
||||
[travis-image]: http://img.shields.io/travis/gulpjs/parse-node-version.svg?label=travis-ci
|
||||
|
||||
[appveyor-url]: https://ci.appveyor.com/project/gulpjs/parse-node-version
|
||||
[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/parse-node-version.svg?label=appveyor
|
||||
|
||||
[coveralls-url]: https://coveralls.io/r/gulpjs/parse-node-version
|
||||
[coveralls-image]: http://img.shields.io/coveralls/gulpjs/parse-node-version/master.svg
|
||||
|
||||
[gitter-url]: https://gitter.im/gulpjs/gulp
|
||||
[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg
|
20
my-app/node_modules/parse-node-version/index.js
generated
vendored
Executable file
20
my-app/node_modules/parse-node-version/index.js
generated
vendored
Executable file
|
@ -0,0 +1,20 @@
|
|||
'use strict';
|
||||
|
||||
function parseNodeVersion(version) {
|
||||
var match = version.match(/^v(\d{1,2})\.(\d{1,2})\.(\d{1,2})(?:-([0-9A-Za-z-.]+))?(?:\+([0-9A-Za-z-.]+))?$/); // eslint-disable-line max-len
|
||||
if (!match) {
|
||||
throw new Error('Unable to parse: ' + version);
|
||||
}
|
||||
|
||||
var res = {
|
||||
major: parseInt(match[1], 10),
|
||||
minor: parseInt(match[2], 10),
|
||||
patch: parseInt(match[3], 10),
|
||||
pre: match[4] || '',
|
||||
build: match[5] || '',
|
||||
};
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
module.exports = parseNodeVersion;
|
40
my-app/node_modules/parse-node-version/package.json
generated
vendored
Executable file
40
my-app/node_modules/parse-node-version/package.json
generated
vendored
Executable file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"name": "parse-node-version",
|
||||
"version": "1.0.1",
|
||||
"description": "Turn node's process.version into something useful.",
|
||||
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
|
||||
"contributors": [
|
||||
"Blaine Bublitz <blaine.bublitz@gmail.com>"
|
||||
],
|
||||
"repository": "gulpjs/parse-node-version",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.10"
|
||||
},
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"scripts": {
|
||||
"lint": "eslint .",
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha --async-only",
|
||||
"cover": "istanbul cover _mocha --report lcovonly",
|
||||
"coveralls": "npm run cover && istanbul-coveralls"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"eslint": "^2.13.0",
|
||||
"eslint-config-gulp": "^3.0.1",
|
||||
"expect": "^1.20.2",
|
||||
"istanbul": "^0.4.3",
|
||||
"istanbul-coveralls": "^1.0.3",
|
||||
"mocha": "^3.5.3"
|
||||
},
|
||||
"keywords": [
|
||||
"process.version",
|
||||
"node version",
|
||||
"version parse"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue