Izmjenjena struktura, dodan backand

This commit is contained in:
GotPPay
2017-10-16 11:19:46 +02:00
parent 1ec88afacb
commit 048e32c4aa
37153 changed files with 2975854 additions and 1 deletions

1
web/node_modules/is-ci/.npmignore generated vendored Normal file
View File

@@ -0,0 +1 @@
node_modules

7
web/node_modules/is-ci/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,7 @@
language: node_js
node_js:
- '6'
- '5'
- '4'
- '0.12'
- '0.10'

21
web/node_modules/is-ci/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2016 Thomas Watson Steen
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.

54
web/node_modules/is-ci/README.md generated vendored Normal file
View File

@@ -0,0 +1,54 @@
# is-ci
Returns `true` if the current environment is a Continuous Integration
server.
Please [open an issue](https://github.com/watson/is-ci/issues) if your
CI server isn't properly detected :)
[![Build status](https://travis-ci.org/watson/is-ci.svg?branch=master)](https://travis-ci.org/watson/is-ci)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)
## Installation
```
npm install is-ci --save
```
## Usage
```js
var isCI = require('is-ci')
if (isCI) {
console.log('The code is running on a CI server')
}
```
## Supported CI tools
Officially supported CI servers:
- [Travis CI](http://travis-ci.org)
- [CircleCI](http://circleci.com)
- [Jenkins CI](https://jenkins-ci.org)
- [Hudson](http://hudson-ci.org)
- [Bamboo](https://www.atlassian.com/software/bamboo)
- [TeamCity](https://www.jetbrains.com/teamcity/)
- [Team Foundation Server](https://www.visualstudio.com/en-us/products/tfs-overview-vs.aspx)
- [GitLab CI](https://about.gitlab.com/gitlab-ci/)
- [Codeship](https://codeship.com)
- [Drone.io](https://drone.io)
- [Magnum CI](https://magnum-ci.com)
- [Semaphore](https://semaphoreci.com)
- [AppVeyor](http://www.appveyor.com)
- [Buildkite](https://buildkite.com)
- [TaskCluster](http://docs.taskcluster.net)
- [GoCD](https://www.go.cd/)
- [Bitbucket Pipelines](https://bitbucket.org/product/features/pipelines)
Other CI tools using environment variables like `BUILD_ID` or `CI` would be detected as well.
## License
MIT

3
web/node_modules/is-ci/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
'use strict'
module.exports = require('ci-info').isCI

66
web/node_modules/is-ci/package.json generated vendored Normal file
View File

@@ -0,0 +1,66 @@
{
"_from": "is-ci@^1.0.10",
"_id": "is-ci@1.0.10",
"_inBundle": false,
"_integrity": "sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=",
"_location": "/is-ci",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "is-ci@^1.0.10",
"name": "is-ci",
"escapedName": "is-ci",
"rawSpec": "^1.0.10",
"saveSpec": null,
"fetchSpec": "^1.0.10"
},
"_requiredBy": [
"/jest/jest-cli"
],
"_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz",
"_shasum": "f739336b2632365061a9d48270cd56ae3369318e",
"_spec": "is-ci@^1.0.10",
"_where": "/home/bilal/Saburly/slucajna-televizija/node_modules/jest/node_modules/jest-cli",
"author": {
"name": "Thomas Watson Steen",
"email": "w@tson.dk",
"url": "https://twitter.com/wa7son"
},
"bugs": {
"url": "https://github.com/watson/is-ci/issues"
},
"bundleDependencies": false,
"coordinates": [
55.6876732,
12.5955341
],
"dependencies": {
"ci-info": "^1.0.0"
},
"deprecated": false,
"description": "Detect if your code is running on a CI server",
"devDependencies": {
"clear-require": "^1.0.1",
"standard": "^5.3.1"
},
"homepage": "https://github.com/watson/is-ci",
"keywords": [
"ci",
"continuous",
"integration",
"test",
"detect"
],
"license": "MIT",
"main": "index.js",
"name": "is-ci",
"repository": {
"type": "git",
"url": "git+https://github.com/watson/is-ci.git"
},
"scripts": {
"test": "standard && node test.js"
},
"version": "1.0.10"
}

17
web/node_modules/is-ci/test.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
'use strict'
var assert = require('assert')
var clearRequire = require('clear-require')
if (!process.env.TRAVIS) process.env.CI = 'true'
var isCI = require('./')
assert(isCI)
delete process.env.CI
delete process.env.CONTINUOUS_INTEGRATION
clearRequire('./')
clearRequire('ci-info')
isCI = require('./')
assert(!isCI)