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

4
web/node_modules/babel-preset-jest/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,4 @@
**/__mocks__/**
**/__tests__/**
src
yarn.lock

35
web/node_modules/babel-preset-jest/README.md generated vendored Normal file
View File

@@ -0,0 +1,35 @@
# babel-preset-jest
> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).
## Install
```sh
$ npm install --save-dev babel-preset-jest
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"presets": ["jest"]
}
```
### Via CLI
```sh
$ babel script.js --presets jest
```
### Via Node API
```javascript
require("babel-core").transform("code", {
presets: ["jest"]
});
```

13
web/node_modules/babel-preset-jest/index.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
module.exports = {
plugins: [
require('babel-plugin-jest-hoist'),
],
};

43
web/node_modules/babel-preset-jest/package.json generated vendored Normal file
View File

@@ -0,0 +1,43 @@
{
"_from": "babel-preset-jest@^20.0.3",
"_id": "babel-preset-jest@20.0.3",
"_inBundle": false,
"_integrity": "sha1-y6yq3stdaJyh4d4TYOv8ZoYsF4o=",
"_location": "/babel-preset-jest",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "babel-preset-jest@^20.0.3",
"name": "babel-preset-jest",
"escapedName": "babel-preset-jest",
"rawSpec": "^20.0.3",
"saveSpec": null,
"fetchSpec": "^20.0.3"
},
"_requiredBy": [
"/babel-jest"
],
"_resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz",
"_shasum": "cbacaadecb5d689ca1e1de1360ebfc66862c178a",
"_spec": "babel-preset-jest@^20.0.3",
"_where": "/home/bilal/Saburly/slucajna-televizija/node_modules/babel-jest",
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"bundleDependencies": false,
"dependencies": {
"babel-plugin-jest-hoist": "^20.0.3"
},
"deprecated": false,
"description": "> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).",
"homepage": "https://github.com/facebook/jest#readme",
"license": "BSD-3-Clause",
"main": "index.js",
"name": "babel-preset-jest",
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/jest.git"
},
"version": "20.0.3"
}