initial commit taken from gitlab.lrz.de

This commit is contained in:
privatereese
2018-08-24 18:09:42 +02:00
parent ae54ed4c48
commit fc05486403
28494 changed files with 2159823 additions and 0 deletions

1
node_modules/react-timer-mixin/.eslintignore generated vendored Normal file
View File

@@ -0,0 +1 @@
node_modules/

194
node_modules/react-timer-mixin/.eslintrc generated vendored Normal file
View File

@@ -0,0 +1,194 @@
{
"env": {
"jasmine": true,
},
// Map from global var to bool specifying if it can be redefined
"globals": {
"__DEV__": true,
"__dirname": false,
"__fbBatchedBridgeConfig": false,
"cancelAnimationFrame": false,
"clearImmediate": true,
"clearInterval": false,
"clearTimeout": false,
"console": false,
"document": false,
"escape": false,
"exports": false,
"global": false,
"jest": false,
"Map": true,
"module": false,
"process": false,
"Promise": true,
"requestAnimationFrame": true,
"require": false,
"Set": true,
"setImmediate": true,
"setInterval": false,
"setTimeout": false,
"window": false,
"XMLHttpRequest": false,
"pit": false
},
"rules": {
"no-cond-assign": 1, // disallow assignment in conditional expressions
"no-console": 0, // disallow use of console (off by default in the node environment)
"no-constant-condition": 1, // disallow use of constant expressions in conditions
"no-comma-dangle": 0, // disallow trailing commas in object literals
"no-control-regex": 1, // disallow control characters in regular expressions
"no-debugger": 1, // disallow use of debugger
"no-dupe-keys": 1, // disallow duplicate keys when creating object literals
"no-empty": 0, // disallow empty statements
"no-empty-class": 1, // disallow the use of empty character classes in regular expressions
"no-ex-assign": 1, // disallow assigning to the exception in a catch block
"no-extra-boolean-cast": 1, // disallow double-negation boolean casts in a boolean context
"no-extra-parens": 0, // disallow unnecessary parentheses (off by default)
"no-extra-semi": 1, // disallow unnecessary semicolons
"no-func-assign": 1, // disallow overwriting functions written as function declarations
"no-inner-declarations": 0, // disallow function or variable declarations in nested blocks
"no-invalid-regexp": 1, // disallow invalid regular expression strings in the RegExp constructor
"no-negated-in-lhs": 1, // disallow negation of the left operand of an in expression
"no-obj-calls": 1, // disallow the use of object properties of the global object (Math and JSON) as functions
"no-regex-spaces": 1, // disallow multiple spaces in a regular expression literal
"no-reserved-keys": 0, // disallow reserved words being used as object literal keys (off by default)
"no-sparse-arrays": 1, // disallow sparse arrays
"no-unreachable": 1, // disallow unreachable statements after a return, throw, continue, or break statement
"use-isnan": 1, // disallow comparisons with the value NaN
"valid-jsdoc": 0, // Ensure JSDoc comments are valid (off by default)
"valid-typeof": 1, // Ensure that the results of typeof are compared against a valid string
// Best Practices
// These are rules designed to prevent you from making mistakes. They either prescribe a better way of doing something or help you avoid footguns.
"block-scoped-var": 0, // treat var statements as if they were block scoped (off by default)
"complexity": 0, // specify the maximum cyclomatic complexity allowed in a program (off by default)
"consistent-return": 0, // require return statements to either always or never specify values
"curly": 1, // specify curly brace conventions for all control statements
"default-case": 0, // require default case in switch statements (off by default)
"dot-notation": 1, // encourages use of dot notation whenever possible
"eqeqeq": 1, // require the use of === and !==
"guard-for-in": 0, // make sure for-in loops have an if statement (off by default)
"no-alert": 1, // disallow the use of alert, confirm, and prompt
"no-caller": 1, // disallow use of arguments.caller or arguments.callee
"no-div-regex": 1, // disallow division operators explicitly at beginning of regular expression (off by default)
"no-else-return": 0, // disallow else after a return in an if (off by default)
"no-empty-label": 1, // disallow use of labels for anything other then loops and switches
"no-eq-null": 0, // disallow comparisons to null without a type-checking operator (off by default)
"no-eval": 1, // disallow use of eval()
"no-extend-native": 1, // disallow adding to native types
"no-extra-bind": 1, // disallow unnecessary function binding
"no-fallthrough": 1, // disallow fallthrough of case statements
"no-floating-decimal": 1, // disallow the use of leading or trailing decimal points in numeric literals (off by default)
"no-implied-eval": 1, // disallow use of eval()-like methods
"no-labels": 1, // disallow use of labeled statements
"no-iterator": 1, // disallow usage of __iterator__ property
"no-lone-blocks": 1, // disallow unnecessary nested blocks
"no-loop-func": 0, // disallow creation of functions within loops
"no-multi-str": 0, // disallow use of multiline strings
"no-native-reassign": 0, // disallow reassignments of native objects
"no-new": 1, // disallow use of new operator when not part of the assignment or comparison
"no-new-func": 1, // disallow use of new operator for Function object
"no-new-wrappers": 1, // disallows creating new instances of String,Number, and Boolean
"no-octal": 1, // disallow use of octal literals
"no-octal-escape": 1, // disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
"no-proto": 1, // disallow usage of __proto__ property
"no-redeclare": 0, // disallow declaring the same variable more then once
"no-return-assign": 1, // disallow use of assignment in return statement
"no-script-url": 1, // disallow use of javascript: urls.
"no-self-compare": 1, // disallow comparisons where both sides are exactly the same (off by default)
"no-sequences": 1, // disallow use of comma operator
"no-unused-expressions": 0, // disallow usage of expressions in statement position
"no-void": 1, // disallow use of void operator (off by default)
"no-warning-comments": 0, // disallow usage of configurable warning terms in comments": 1, // e.g. TODO or FIXME (off by default)
"no-with": 1, // disallow use of the with statement
"radix": 1, // require use of the second argument for parseInt() (off by default)
"vars-on-top": 0, // requires to declare all vars on top of their containing scope (off by default)
"wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default)
"yoda": 1, // require or disallow Yoda conditions
// Strict Mode
// These rules relate to using strict mode.
"global-strict": [2, "always"], // require or disallow the "use strict" pragma in the global scope (off by default in the node environment)
"no-extra-strict": 1, // disallow unnecessary use of "use strict"; when already in strict mode
"strict": 0, // require that all functions are run in strict mode
// Variables
// These rules have to do with variable declarations.
"no-catch-shadow": 1, // disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment)
"no-delete-var": 1, // disallow deletion of variables
"no-label-var": 1, // disallow labels that share a name with a variable
"no-shadow": 1, // disallow declaration of variables already declared in the outer scope
"no-shadow-restricted-names": 1, // disallow shadowing of names such as arguments
"no-undef": 2, // disallow use of undeclared variables unless mentioned in a /*global */ block
"no-undefined": 0, // disallow use of undefined variable (off by default)
"no-undef-init": 1, // disallow use of undefined when initializing variables
"no-unused-vars": [1, {"vars": "all", "args": "none"}], // disallow declaration of variables that are not used in the code
"no-use-before-define": 0, // disallow use of variables before they are defined
// Node.js
// These rules are specific to JavaScript running on Node.js.
"handle-callback-err": 1, // enforces error handling in callbacks (off by default) (on by default in the node environment)
"no-mixed-requires": 1, // disallow mixing regular variable and require declarations (off by default) (on by default in the node environment)
"no-new-require": 1, // disallow use of new operator with the require function (off by default) (on by default in the node environment)
"no-path-concat": 1, // disallow string concatenation with __dirname and __filename (off by default) (on by default in the node environment)
"no-process-exit": 0, // disallow process.exit() (on by default in the node environment)
"no-restricted-modules": 1, // restrict usage of specified node modules (off by default)
"no-sync": 0, // disallow use of synchronous methods (off by default)
// Stylistic Issues
// These rules are purely matters of style and are quite subjective.
"key-spacing": 0,
"comma-spacing": 0,
"no-multi-spaces": 0,
"brace-style": 0, // enforce one true brace style (off by default)
"camelcase": 0, // require camel case names
"consistent-this": [1, "self"], // enforces consistent naming when capturing the current execution context (off by default)
"eol-last": 1, // enforce newline at the end of file, with no multiple empty lines
"func-names": 0, // require function expressions to have a name (off by default)
"func-style": 0, // enforces use of function declarations or expressions (off by default)
"new-cap": 0, // require a capital letter for constructors
"new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments
"no-nested-ternary": 0, // disallow nested ternary expressions (off by default)
"no-array-constructor": 1, // disallow use of the Array constructor
"no-lonely-if": 0, // disallow if as the only statement in an else block (off by default)
"no-new-object": 1, // disallow use of the Object constructor
"no-spaced-func": 1, // disallow space between function identifier and application
"no-space-before-semi": 1, // disallow space before semicolon
"no-ternary": 0, // disallow the use of ternary operators (off by default)
"no-trailing-spaces": 1, // disallow trailing whitespace at the end of lines
"no-underscore-dangle": 0, // disallow dangling underscores in identifiers
"no-wrap-func": 1, // disallow wrapping of non-IIFE statements in parens
"no-mixed-spaces-and-tabs": 1, // disallow mixed spaces and tabs for indentation
"quotes": [1, "single"], // specify whether double or single quotes should be used
"quote-props": 0, // require quotes around object literal property names (off by default)
"semi": 1, // require or disallow use of semicolons instead of ASI
"sort-vars": 0, // sort variables within the same declaration block (off by default)
"space-after-keywords": 1, // require a space after certain keywords (off by default)
"space-in-brackets": 0, // require or disallow spaces inside brackets (off by default)
"space-in-parens": 0, // require or disallow spaces inside parentheses (off by default)
"space-infix-ops": 1, // require spaces around operators
"space-return-throw-case": 1, // require a space after return, throw, and case
"space-unary-word-ops": 1, // require a space around word operators such as typeof (off by default)
"max-nested-callbacks": 0, // specify the maximum depth callbacks can be nested (off by default)
"one-var": 0, // allow just one var statement per function (off by default)
"wrap-regex": 0, // require regex literals to be wrapped in parentheses (off by default)
// Legacy
// The following rules are included for compatibility with JSHint and JSLint. While the names of the rules may not match up with the JSHint/JSLint counterpart, the functionality is the same.
"max-depth": 0, // specify the maximum depth that blocks can be nested (off by default)
"max-len": 0, // specify the maximum length of a line in your program (off by default)
"max-params": 0, // limits the number of parameters that can be used in the function declaration. (off by default)
"max-statements": 0, // specify the maximum number of statement allowed in a function (off by default)
"no-bitwise": 1, // disallow use of bitwise operators (off by default)
"no-plusplus": 0 // disallow use of unary operators, ++ and -- (off by default)
}
}

5
node_modules/react-timer-mixin/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,5 @@
---
language: node_js
node_js:
- '0.10'
sudo: false

43
node_modules/react-timer-mixin/CONTRIBUTING.md generated vendored Normal file
View File

@@ -0,0 +1,43 @@
# Contributing to react-timer-mixin
We want to make contributing to this project as easy and transparent as
possible.
## Our Development Process
The majority of development on react-timer-mixin will occur through GitHub. Accordingly,
the process for contributing will follow standard GitHub protocol.
## Pull Requests
We actively welcome your pull requests.
1. Fork the repo and create your branch from `master`.
2. If you've added code that should be tested, add tests
3. If you've changed APIs, update the documentation.
4. Ensure the test suite passes.
5. Make sure your code lints and typechecks.
6. If you haven't already, complete the Contributor License Agreement ("CLA").
## Contributor License Agreement ("CLA")
In order to accept your pull request, we need you to submit a CLA. You only need
to do this once to work on any of Facebook's open source projects.
Complete your CLA here: <https://code.facebook.com/cla>
## Issues
We use GitHub issues to track public bugs. Please ensure your description is
clear and has sufficient instructions to be able to reproduce the issue.
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
disclosure of security bugs. In those cases, please go through the process
outlined on that page and do not file a public issue.
## Coding Style
* Use semicolons;
* Commas last,
* 2 spaces for indentation (no tabs)
* Prefer `'` over `"`
* `"use strict";`
* 80 character line length
* "Attractive"
## License
By contributing to react-timer-mixin, you agree that your contributions will be licensed
under its MIT license.

21
node_modules/react-timer-mixin/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Facebook, Inc. and its affiliates.
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.

35
node_modules/react-timer-mixin/README.md generated vendored Normal file
View File

@@ -0,0 +1,35 @@
# react-timer-mixin
Using bare setTimeout, setInterval, setImmediate and requestAnimationFrame calls
is very dangerous because if you forget to cancel the request before the
component is unmounted, you risk the callback throwing an exception.
If you include TimerMixin, then you can replace your calls to
`setTimeout(fn, 500)` with `this.setTimeout(fn, 500)` (just prepend `this.`) and
everything will be properly cleaned up for you.
## Installation
Install the module directly from npm:
```
npm install react-timer-mixin
```
## Example
```js
var React = require('react');
var TimerMixin = require('react-timer-mixin');
var Component = React.createClass({
mixins: [TimerMixin],
componentDidMount() {
this.setTimeout(
() => { console.log('I do not leak!'); },
500
);
}
});
```

89
node_modules/react-timer-mixin/TimerMixin.js generated vendored Normal file
View File

@@ -0,0 +1,89 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
'use strict';
var GLOBAL = typeof window === 'undefined' ? global : window;
var setter = function(_setter, _clearer, array) {
return function(callback, delta) {
var id = _setter(function() {
_clearer.call(this, id);
callback.apply(this, arguments);
}.bind(this), delta);
if (!this[array]) {
this[array] = [id];
} else {
this[array].push(id);
}
return id;
};
};
var clearer = function(_clearer, array) {
return function(id) {
if (this[array]) {
var index = this[array].indexOf(id);
if (index !== -1) {
this[array].splice(index, 1);
}
}
_clearer(id);
};
};
var _timeouts = 'TimerMixin_timeouts';
var _clearTimeout = clearer(GLOBAL.clearTimeout, _timeouts);
var _setTimeout = setter(GLOBAL.setTimeout, _clearTimeout, _timeouts);
var _intervals = 'TimerMixin_intervals';
var _clearInterval = clearer(GLOBAL.clearInterval, _intervals);
var _setInterval = setter(GLOBAL.setInterval, function() {/* noop */}, _intervals);
var _immediates = 'TimerMixin_immediates';
var _clearImmediate = clearer(GLOBAL.clearImmediate, _immediates);
var _setImmediate = setter(GLOBAL.setImmediate, _clearImmediate, _immediates);
var _rafs = 'TimerMixin_rafs';
var _cancelAnimationFrame = clearer(GLOBAL.cancelAnimationFrame, _rafs);
var _requestAnimationFrame = setter(GLOBAL.requestAnimationFrame, _cancelAnimationFrame, _rafs);
var TimerMixin = {
componentWillUnmount: function() {
this[_timeouts] && this[_timeouts].forEach(function(id) {
GLOBAL.clearTimeout(id);
});
this[_timeouts] = null;
this[_intervals] && this[_intervals].forEach(function(id) {
GLOBAL.clearInterval(id);
});
this[_intervals] = null;
this[_immediates] && this[_immediates].forEach(function(id) {
GLOBAL.clearImmediate(id);
});
this[_immediates] = null;
this[_rafs] && this[_rafs].forEach(function(id) {
GLOBAL.cancelAnimationFrame(id);
});
this[_rafs] = null;
},
setTimeout: _setTimeout,
clearTimeout: _clearTimeout,
setInterval: _setInterval,
clearInterval: _clearInterval,
setImmediate: _setImmediate,
clearImmediate: _clearImmediate,
requestAnimationFrame: _requestAnimationFrame,
cancelAnimationFrame: _cancelAnimationFrame,
};
module.exports = TimerMixin;

View File

@@ -0,0 +1,105 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
'use strict';
global.setImmediate = jest.genMockFunction();
global.clearImmediate = jest.genMockFunction();
global.requestAnimationFrame = jest.genMockFunction();
global.cancelAnimationFrame = jest.genMockFunction();
jest.dontMock('../TimerMixin');
var TimerMixin = require('../TimerMixin');
describe('TimerMixin', function() {
var component;
beforeEach(function() {
component = Object.create(TimerMixin);
// Simulate React auto-binding
[
'setTimeout', 'clearTimeout',
'setInterval', 'clearInterval',
'setImmediate', 'clearImmediate',
'requestAnimationFrame', 'cancelAnimationFrame'
].forEach(function(key) {
component[key] = component[key].bind(component);
});
});
[
{setter: 'setTimeout', clearer: 'clearTimeout', array: 'TimerMixin_timeouts'},
{setter: 'setInterval', clearer: 'clearInterval', array: 'TimerMixin_intervals'},
{setter: 'setImmediate', clearer: 'clearImmediate', array: 'TimerMixin_immediates'},
{setter: 'requestAnimationFrame', clearer: 'cancelAnimationFrame', array: 'TimerMixin_rafs'},
].forEach(function(type) {
it('should apply basic ' + type.setter + ' correctly', function() {
expect(component[type.array]).toEqual(undefined);
global[type.setter].mockClear();
global[type.setter].mockReturnValue(1);
global[type.clearer].mockClear();
var cb = jest.genMockFunction();
var id = component[type.setter](cb, 10);
expect(global[type.setter]).toBeCalledWith(cb, 10);
expect(global[type.clearer]).not.toBeCalled();
expect(component[type.array]).toEqual([id]);
component.componentWillUnmount();
expect(global[type.clearer]).toBeCalledWith(id);
expect(component[type.array]).toEqual(null);
});
it('should apply ' + type.clearer + ' correctly', function() {
var id = 1;
global[type.setter].mockClear();
global[type.setter].mockImpl(function() { return id++; });
global[type.clearer].mockClear();
var cb = jest.genMockFunction();
var id1 = component[type.setter](cb, 10);
var id2 = component[type.setter](cb, 10);
var id3 = component[type.setter](cb, 10);
component[type.clearer](id2);
expect(global[type.clearer]).toBeCalledWith(id2);
var id4 = component[type.setter](cb, 10);
component[type.clearer](id1);
expect(global[type.clearer]).toBeCalledWith(id1);
var id5 = component[type.setter](cb, 10);
component[type.clearer](id5);
expect(global[type.clearer]).toBeCalledWith(id5);
component[type.clearer](id3);
expect(global[type.clearer]).toBeCalledWith(id3);
expect(component[type.array]).toEqual([id4]);
component.componentWillUnmount();
expect(global[type.clearer]).toBeCalledWith(id4);
expect(component[type.array]).toEqual(null);
});
it('should remove bookeeping when callback is called for ' + type.setter, function() {
global[type.setter].mockClear();
global[type.setter].mockReturnValue(1);
global[type.clearer].mockClear();
var cb = jest.genMockFunction();
var id = component[type.setter](cb, 10);
expect(cb).not.toBeCalled();
global[type.setter].mock.calls[0][0]();
expect(cb).toBeCalled();
if (type.setter !== 'setInterval') {
expect(global[type.clearer]).toBeCalledWith(id);
expect(component[type.array]).toEqual([]);
} else {
expect(global[type.clearer]).not.toBeCalled();
expect(component[type.array]).toEqual([id]);
}
});
});
});

92
node_modules/react-timer-mixin/package.json generated vendored Normal file
View File

@@ -0,0 +1,92 @@
{
"_args": [
[
"react-timer-mixin@^0.13.2",
"/home/bernhard/freifunk-app/node_modules/react-native"
]
],
"_from": "react-timer-mixin@>=0.13.2 <0.14.0",
"_id": "react-timer-mixin@0.13.4",
"_inCache": true,
"_installable": true,
"_location": "/react-timer-mixin",
"_nodeVersion": "8.11.1",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/react-timer-mixin_0.13.4_1531811308321_0.3048461005046259"
},
"_npmUser": {
"email": "npm@sophiebits.com",
"name": "sophiebits"
},
"_npmVersion": "5.6.0",
"_phantomChildren": {},
"_requested": {
"name": "react-timer-mixin",
"raw": "react-timer-mixin@^0.13.2",
"rawSpec": "^0.13.2",
"scope": null,
"spec": ">=0.13.2 <0.14.0",
"type": "range"
},
"_requiredBy": [
"/react-native"
],
"_resolved": "https://registry.npmjs.org/react-timer-mixin/-/react-timer-mixin-0.13.4.tgz",
"_shasum": "75a00c3c94c13abe29b43d63b4c65a88fc8264d3",
"_shrinkwrap": null,
"_spec": "react-timer-mixin@^0.13.2",
"_where": "/home/bernhard/freifunk-app/node_modules/react-native",
"bugs": {
"url": "https://github.com/reactjs/react-timer-mixin/issues"
},
"dependencies": {},
"description": "TimerMixin provides timer functions for executing code in the future that are safely cleaned up when the component unmounts",
"devDependencies": {
"eslint": "0.9.2",
"jest-cli": "^0.2.1"
},
"directories": {},
"dist": {
"fileCount": 9,
"integrity": "sha512-4+ow23tp/Tv7hBM5Az5/Be/eKKF7DIvJ09voz5LyHGQaqqz9WV8YMs31eFvcYQs7d451LSg7kDJV70XYN/Ug/Q==",
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTZXsCRA9TVsSAnZWagAAUEkP+QDAavdkKU32ONiOyXm/\njfHdrFqRabUhFtzt0Wif5BpfasSuOHPCezXT4IcXu7TW26I9cwHzMl3VHDwh\nKV+CXYA2li+KXwEi8xytWz5gVFnqow4MkO7HZmSW7Dz4ZqOi+1SCbtFNmedf\n5mxB/7XKVo6aWv0SRvVk8KLIvaSr/MADsf7xZO6+v4PEos6eArt2YY53i/XI\nJ/e9XqZA5hoKvCye9H1uLcfE3hp8x1OX3aUQP5FD/AGS+u80w1qVZ9SPy4VK\n37FiRMsr645oaCKyhmqFElNmqL5n3Vb/cMNzzQ/54LvGfS0ncOaZQX0f0bcd\nyK7vBkvQduU//bYowFA6zx+yxlfpNmuQe+3frPhvllR7Xl4eZDh35DamoOgF\nv4pF/3tLpVZhKU8jxQrw+fdN8ntQVCpDlcVYYBZ8FayeAWWbHJrnnF5NusgK\ndJARCKho4rx00F5U9VWGu42o5LiPgHVkkKAS3Cto2dLqxgr/ybKQu/2MlaDf\n4beVAMKz2hIYn1k2RhtnpJI+O2tJBgjzR+FtbGeXURCBSgrxI/+pMn66bGY6\n9I7oNAPZ8l1frnbo3hfx/rQupUSPO9tlQWxFCVtRAeYPvDicYkMBZ8G9KUjl\nFVotn2yaqbpubFf7H71shlALG6pQwZHMvkEq0QudfK1Dhs9tLHYl3XNG6D9H\niZmD\r\n=QkGV\r\n-----END PGP SIGNATURE-----\r\n",
"shasum": "75a00c3c94c13abe29b43d63b4c65a88fc8264d3",
"tarball": "https://registry.npmjs.org/react-timer-mixin/-/react-timer-mixin-0.13.4.tgz",
"unpackedSize": 24636
},
"gitHead": "71015de3830eb9a72909961502be2dde6ff860a7",
"homepage": "https://github.com/reactjs/react-timer-mixin#readme",
"keywords": [
"mixin",
"react",
"timer"
],
"license": "MIT",
"main": "TimerMixin.js",
"maintainers": [
{
"name": "aweary",
"email": "Kierkegaurd@gmail.com"
},
{
"name": "sophiebits",
"email": "npm@sophiebits.com"
},
{
"name": "tadeuzagallo",
"email": "tadeuzagallo@gmail.com"
}
],
"name": "react-timer-mixin",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/reactjs/react-timer-mixin.git"
},
"scripts": {
"test": "jest"
},
"version": "0.13.4"
}