1
0
Fork 0

Always use --global-style when installing npm deps

This partially reverts commit 8a286a30d9.
This commit is contained in:
Alan Plum 2016-07-14 16:19:30 +02:00
parent 78e83305bc
commit cf302adf26
No known key found for this signature in database
GPG Key ID: 8ED72A9A323B6EFD
2620 changed files with 115738 additions and 8010 deletions

1
js/node/node_modules/.bin/eslint generated vendored
View File

@ -1 +0,0 @@
../eslint/bin/eslint.js

View File

@ -1,12 +0,0 @@
'use strict';
var isArray = Array.isArray, forEach = Array.prototype.forEach
, push = Array.prototype.push;
module.exports = function flatten() {
var r = [];
forEach.call(this, function (x) {
push.apply(r, isArray(x) ? flatten.call(x) : [x]);
});
return r;
};

View File

@ -1,10 +0,0 @@
sudo: false # http://docs.travis-ci.com/user/workers/container-based-infrastructure/
language: node_js
node_js:
- 0.12
- v4
- v5
notifications:
email:
- medikoo+es6-symbol@medikoo.com

View File

@ -1,46 +0,0 @@
v3.0.2 -- 2015.12.12
* Fix definition flow, so uneven state of Symbol implementation doesn't crash initialization of
polyfill. See #13
v3.0.1 -- 2015.10.22
* Workaround for IE11 bug (reported in #12)
v3.0.0 -- 2015.10.02
* Reuse native symbols (e.g. iterator, toStringTag etc.) in a polyfill if they're available
Otherwise polyfill symbols may not be recognized by other functions
* Improve documentation
v2.0.1 -- 2015.01.28
* Fix Symbol.prototype[Symbol.isPrimitive] implementation
* Improve validation within Symbol.prototype.toString and
Symbol.prototype.valueOf
v2.0.0 -- 2015.01.28
* Update up to changes in specification:
* Implement `for` and `keyFor`
* Remove `Symbol.create` and `Symbol.isRegExp`
* Add `Symbol.match`, `Symbol.replace`, `Symbol.search`, `Symbol.species` and
`Symbol.split`
* Rename `validSymbol` to `validateSymbol`
* Improve documentation
* Remove dead test modules
v1.0.0 -- 2015.01.26
* Fix enumerability for symbol properties set normally (e.g. obj[symbol] = value)
* Introduce initialization via hidden constructor
* Fix isSymbol handling of polyfill values when native Symbol is present
* Fix spelling of LICENSE
* Configure lint scripts
v0.1.1 -- 2014.10.07
* Fix isImplemented, so it returns true in case of polyfill
* Improve documentations
v0.1.0 -- 2014.04.28
* Assure strictly npm dependencies
* Update to use latest versions of dependencies
* Fix implementation detection so it doesn't crash on `String(symbol)`
* throw on `new Symbol()` (as decided by TC39)
v0.0.0 -- 2013.11.15
* Initial (dev) version

View File

@ -1,18 +0,0 @@
'use strict';
module.exports = function () {
var symbol;
if (typeof Symbol !== 'function') return false;
symbol = Symbol('test symbol');
try { String(symbol); } catch (e) { return false; }
if (typeof Symbol.iterator === 'symbol') return true;
// Return 'true' for polyfills
if (typeof Symbol.isConcatSpreadable !== 'object') return false;
if (typeof Symbol.iterator !== 'object') return false;
if (typeof Symbol.toPrimitive !== 'object') return false;
if (typeof Symbol.toStringTag !== 'object') return false;
if (typeof Symbol.unscopables !== 'object') return false;
return true;
};

View File

@ -1,8 +0,0 @@
// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = (function () {
if (typeof Symbol !== 'function') return false;
return (typeof Symbol.iterator === 'symbol');
}());

View File

@ -1,5 +0,0 @@
'use strict';
module.exports = function (x) {
return (x && ((typeof x === 'symbol') || (x['@@toStringTag'] === 'Symbol'))) || false;
};

View File

@ -1,100 +0,0 @@
{
"_args": [
[
{
"raw": "es6-symbol@~3.0.2",
"scope": null,
"escapedName": "es6-symbol",
"name": "es6-symbol",
"rawSpec": "~3.0.2",
"spec": ">=3.0.2 <3.1.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/es5-ext"
]
],
"_from": "es6-symbol@>=3.0.2 <3.1.0",
"_id": "es6-symbol@3.0.2",
"_inCache": true,
"_installable": true,
"_location": "/es5-ext/es6-symbol",
"_nodeVersion": "5.2.0",
"_npmUser": {
"name": "medikoo",
"email": "medikoo+npm@medikoo.com"
},
"_npmVersion": "3.3.12",
"_phantomChildren": {},
"_requested": {
"raw": "es6-symbol@~3.0.2",
"scope": null,
"escapedName": "es6-symbol",
"name": "es6-symbol",
"rawSpec": "~3.0.2",
"spec": ">=3.0.2 <3.1.0",
"type": "range"
},
"_requiredBy": [
"/es5-ext"
],
"_resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz",
"_shasum": "1e928878c6f5e63541625b4bb4df4af07d154219",
"_shrinkwrap": null,
"_spec": "es6-symbol@~3.0.2",
"_where": "/arangodb/arangodb/js/node/node_modules/es5-ext",
"author": {
"name": "Mariusz Nowak",
"email": "medyk@medikoo.com",
"url": "http://www.medikoo.com/"
},
"bugs": {
"url": "https://github.com/medikoo/es6-symbol/issues"
},
"dependencies": {
"d": "~0.1.1",
"es5-ext": "~0.10.10"
},
"description": "ECMAScript 6 Symbol polyfill",
"devDependencies": {
"tad": "~0.2.4",
"xlint": "~0.2.2",
"xlint-jslint-medikoo": "~0.1.4"
},
"directories": {},
"dist": {
"shasum": "1e928878c6f5e63541625b4bb4df4af07d154219",
"tarball": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz"
},
"gitHead": "b7da6b926c44e3745de69b17c98c00a5c84b4ebe",
"homepage": "https://github.com/medikoo/es6-symbol#readme",
"keywords": [
"symbol",
"private",
"property",
"es6",
"ecmascript",
"harmony",
"ponyfill",
"polyfill"
],
"license": "MIT",
"maintainers": [
{
"name": "medikoo",
"email": "medikoo+npm@medikoo.com"
}
],
"name": "es6-symbol",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git://github.com/medikoo/es6-symbol.git"
},
"scripts": {
"lint": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream",
"lint-console": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch",
"test": "node ./node_modules/tad/bin/tad"
},
"version": "3.0.2"
}

View File

@ -1,107 +0,0 @@
// ES2015 Symbol polyfill for environments that do not support it (or partially support it_
'use strict';
var d = require('d')
, validateSymbol = require('./validate-symbol')
, create = Object.create, defineProperties = Object.defineProperties
, defineProperty = Object.defineProperty, objPrototype = Object.prototype
, NativeSymbol, SymbolPolyfill, HiddenSymbol, globalSymbols = create(null);
if (typeof Symbol === 'function') NativeSymbol = Symbol;
var generateName = (function () {
var created = create(null);
return function (desc) {
var postfix = 0, name, ie11BugWorkaround;
while (created[desc + (postfix || '')]) ++postfix;
desc += (postfix || '');
created[desc] = true;
name = '@@' + desc;
defineProperty(objPrototype, name, d.gs(null, function (value) {
// For IE11 issue see:
// https://connect.microsoft.com/IE/feedbackdetail/view/1928508/
// ie11-broken-getters-on-dom-objects
// https://github.com/medikoo/es6-symbol/issues/12
if (ie11BugWorkaround) return;
ie11BugWorkaround = true;
defineProperty(this, name, d(value));
ie11BugWorkaround = false;
}));
return name;
};
}());
// Internal constructor (not one exposed) for creating Symbol instances.
// This one is used to ensure that `someSymbol instanceof Symbol` always return false
HiddenSymbol = function Symbol(description) {
if (this instanceof HiddenSymbol) throw new TypeError('TypeError: Symbol is not a constructor');
return SymbolPolyfill(description);
};
// Exposed `Symbol` constructor
// (returns instances of HiddenSymbol)
module.exports = SymbolPolyfill = function Symbol(description) {
var symbol;
if (this instanceof Symbol) throw new TypeError('TypeError: Symbol is not a constructor');
symbol = create(HiddenSymbol.prototype);
description = (description === undefined ? '' : String(description));
return defineProperties(symbol, {
__description__: d('', description),
__name__: d('', generateName(description))
});
};
defineProperties(SymbolPolyfill, {
for: d(function (key) {
if (globalSymbols[key]) return globalSymbols[key];
return (globalSymbols[key] = SymbolPolyfill(String(key)));
}),
keyFor: d(function (s) {
var key;
validateSymbol(s);
for (key in globalSymbols) if (globalSymbols[key] === s) return key;
}),
// If there's native implementation of given symbol, let's fallback to it
// to ensure proper interoperability with other native functions e.g. Array.from
hasInstance: d('', (NativeSymbol && NativeSymbol.hasInstance) || SymbolPolyfill('hasInstance')),
isConcatSpreadable: d('', (NativeSymbol && NativeSymbol.isConcatSpreadable) ||
SymbolPolyfill('isConcatSpreadable')),
iterator: d('', (NativeSymbol && NativeSymbol.iterator) || SymbolPolyfill('iterator')),
match: d('', (NativeSymbol && NativeSymbol.match) || SymbolPolyfill('match')),
replace: d('', (NativeSymbol && NativeSymbol.replace) || SymbolPolyfill('replace')),
search: d('', (NativeSymbol && NativeSymbol.search) || SymbolPolyfill('search')),
species: d('', (NativeSymbol && NativeSymbol.species) || SymbolPolyfill('species')),
split: d('', (NativeSymbol && NativeSymbol.split) || SymbolPolyfill('split')),
toPrimitive: d('', (NativeSymbol && NativeSymbol.toPrimitive) || SymbolPolyfill('toPrimitive')),
toStringTag: d('', (NativeSymbol && NativeSymbol.toStringTag) || SymbolPolyfill('toStringTag')),
unscopables: d('', (NativeSymbol && NativeSymbol.unscopables) || SymbolPolyfill('unscopables'))
});
// Internal tweaks for real symbol producer
defineProperties(HiddenSymbol.prototype, {
constructor: d(SymbolPolyfill),
toString: d('', function () { return this.__name__; })
});
// Proper implementation of methods exposed on Symbol.prototype
// They won't be accessible on produced symbol instances as they derive from HiddenSymbol.prototype
defineProperties(SymbolPolyfill.prototype, {
toString: d(function () { return 'Symbol (' + validateSymbol(this).__description__ + ')'; }),
valueOf: d(function () { return validateSymbol(this); })
});
defineProperty(SymbolPolyfill.prototype, SymbolPolyfill.toPrimitive, d('',
function () { return validateSymbol(this); }));
defineProperty(SymbolPolyfill.prototype, SymbolPolyfill.toStringTag, d('c', 'Symbol'));
// Proper implementaton of toPrimitive and toStringTag for returned symbol instances
defineProperty(HiddenSymbol.prototype, SymbolPolyfill.toStringTag,
d('c', SymbolPolyfill.prototype[SymbolPolyfill.toStringTag]));
// Note: It's important to define `toPrimitive` as last one, as some implementations
// implement `toPrimitive` natively without implementing `toStringTag` (or other specified symbols)
// And that may invoke error in definition flow:
// See: https://github.com/medikoo/es6-symbol/issues/13#issuecomment-164146149
defineProperty(HiddenSymbol.prototype, SymbolPolyfill.toPrimitive,
d('c', SymbolPolyfill.prototype[SymbolPolyfill.toPrimitive]));

View File

@ -1,27 +0,0 @@
'use strict';
var d = require('d')
, isSymbol = require('../is-symbol')
, defineProperty = Object.defineProperty;
module.exports = function (T, a) {
var symbol = T('test'), x = {};
defineProperty(x, symbol, d('foo'));
a(x.test, undefined, "Name");
a(x[symbol], 'foo', "Get");
a(x instanceof T, false);
a(isSymbol(symbol), true, "Symbol");
a(isSymbol(T.iterator), true, "iterator");
a(isSymbol(T.toStringTag), true, "toStringTag");
x = {};
x[symbol] = 'foo';
a.deep(Object.getOwnPropertyDescriptor(x, symbol), { configurable: true, enumerable: false,
value: 'foo', writable: true });
symbol = T.for('marko');
a(isSymbol(symbol), true);
a(T.for('marko'), symbol);
a(T.keyFor(symbol), 'marko');
};

View File

@ -1,19 +0,0 @@
'use strict';
var value = require('./valid-value')
, defineProperty = Object.defineProperty
, getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor
, getOwnPropertyNames = Object.getOwnPropertyNames;
module.exports = function (target, source) {
var error;
target = Object(value(target));
getOwnPropertyNames(Object(value(source))).forEach(function (name) {
try {
defineProperty(target, name, getOwnPropertyDescriptor(source, name));
} catch (e) { error = e; }
});
if (error !== undefined) throw error;
return target;
};

View File

@ -1,5 +0,0 @@
'use strict';
module.exports = function (t, a) {
a(t.call('razDwaTRzy4yFoo45My'), 'raz-dwa-t-rzy4y-foo45-my');
};

View File

@ -1,5 +0,0 @@
'use strict';
module.exports = function (t, a) {
a(t.call('raz-dwa-t-rzy-4y-rtr4-tiu-45-pa'), 'razDwaTRzy4yRtr4Tiu45Pa');
};

View File

@ -1,15 +0,0 @@
@root
module
tabs
indent 2
maxlen 100
ass
nomen
plusplus
newcap
vars
predef+ Symbol

View File

@ -1,71 +0,0 @@
# es6-symbol
## ECMAScript 6 Symbol polyfill
For more information about symbols see following links
- [Symbols in ECMAScript 6 by Axel Rauschmayer](http://www.2ality.com/2014/12/es6-symbols.html)
- [MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol)
- [Specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-constructor)
### Limitations
Underneath it uses real string property names which can easily be retrieved, however accidental collision with other property names is unlikely.
### Usage
Its safest to use *es6-symbol* as a [ponyfill](http://kikobeats.com/polyfill-ponyfill-and-prollyfill/) a polyfill which doesnt touch global objects:
```javascript
var Symbol = require('es6-symbol');
```
If you want to make sure your environment implements `Symbol` globally, do:
```javascript
require('es6-symbol/implement');
```
If you strictly want to use polyfill even if native `Symbol` exists (hard to find a good reason for that), do:
```javascript
var Symbol = require('es6-symbol/polyfill');
```
#### API
Best is to refer to [specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects). Still if you want quick look, follow examples:
```javascript
var Symbol = require('es6-symbol');
var symbol = Symbol('My custom symbol');
var x = {};
x[symbol] = 'foo';
console.log(x[symbol]); 'foo'
// Detect iterable:
var iterator, result;
if (possiblyIterable[Symbol.iterator]) {
iterator = possiblyIterable[Symbol.iterator]();
result = iterator.next();
while(!result.done) {
console.log(result.value);
result = iterator.next();
}
}
```
### Installation
#### NPM
In your project path:
$ npm install es6-symbol
##### Browser
To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)
## Tests [![Build Status](https://travis-ci.org/medikoo/es6-symbol.png)](https://travis-ci.org/medikoo/es6-symbol)
$ npm test

View File

@ -1,7 +0,0 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(require('es5-ext/global'), 'Symbol',
{ value: require('./polyfill'), configurable: true, enumerable: false,
writable: true });
}

View File

@ -1,3 +0,0 @@
'use strict';
module.exports = require('./is-implemented')() ? Symbol : require('./polyfill');

View File

@ -1,3 +0,0 @@
'use strict';
module.exports = function (t, a) { a(typeof Symbol, 'function'); };

View File

@ -1,12 +0,0 @@
'use strict';
var d = require('d')
, defineProperty = Object.defineProperty;
module.exports = function (T, a) {
var symbol = T('test'), x = {};
defineProperty(x, symbol, d('foo'));
a(x.test, undefined, "Name");
a(x[symbol], 'foo', "Get");
};

View File

@ -1,14 +0,0 @@
'use strict';
var global = require('es5-ext/global')
, polyfill = require('../polyfill');
module.exports = function (t, a) {
var cache;
a(typeof t(), 'boolean');
cache = global.Symbol;
global.Symbol = polyfill;
a(t(), true);
if (cache === undefined) delete global.Symbol;
else global.Symbol = cache;
};

View File

@ -1,16 +0,0 @@
'use strict';
var SymbolPoly = require('../polyfill');
module.exports = function (t, a) {
a(t(undefined), false, "Undefined");
a(t(null), false, "Null");
a(t(true), false, "Primitive");
a(t('raz'), false, "String");
a(t({}), false, "Object");
a(t([]), false, "Array");
if (typeof Symbol !== 'undefined') {
a(t(Symbol()), true, "Native");
}
a(t(SymbolPoly()), true, "Polyfill");
};

View File

@ -1,19 +0,0 @@
'use strict';
var SymbolPoly = require('../polyfill');
module.exports = function (t, a) {
var symbol;
a.throws(function () { t(undefined); }, TypeError, "Undefined");
a.throws(function () { t(null); }, TypeError, "Null");
a.throws(function () { t(true); }, TypeError, "Primitive");
a.throws(function () { t('raz'); }, TypeError, "String");
a.throws(function () { t({}); }, TypeError, "Object");
a.throws(function () { t([]); }, TypeError, "Array");
if (typeof Symbol !== 'undefined') {
symbol = Symbol();
a(t(symbol), symbol, "Native");
}
symbol = SymbolPoly();
a(t(symbol), symbol, "Polyfill");
};

View File

@ -1,8 +0,0 @@
'use strict';
var isSymbol = require('./is-symbol');
module.exports = function (value) {
if (!isSymbol(value)) throw new TypeError(value + " is not a symbol");
return value;
};

View File

@ -1,4 +0,0 @@
.DS_Store
/node_modules
/npm-debug.log
/.lintcache

View File

@ -1,3 +0,0 @@
'use strict';
module.exports = function (t, a) { a(typeof t, 'boolean'); };

View File

@ -1,16 +1,8 @@
{
"_args": [
[
{
"raw": "eslint-config-semistandard@6.0.2",
"scope": null,
"escapedName": "eslint-config-semistandard",
"name": "eslint-config-semistandard",
"rawSpec": "6.0.2",
"spec": "6.0.2",
"type": "version"
},
"/arangodb/arangodb/js/node"
"eslint-config-semistandard@6.0.2",
"/home/pluma/projects/arango/arangodb/js/node"
]
],
"_from": "eslint-config-semistandard@6.0.2",
@ -24,32 +16,30 @@
"tmp": "tmp/eslint-config-semistandard-6.0.2.tgz_1463087572988_0.6166913632769138"
},
"_npmUser": {
"name": "flet",
"email": "flettre@gmail.com"
"email": "flettre@gmail.com",
"name": "flet"
},
"_npmVersion": "3.7.1",
"_phantomChildren": {},
"_requested": {
"raw": "eslint-config-semistandard@6.0.2",
"scope": null,
"escapedName": "eslint-config-semistandard",
"name": "eslint-config-semistandard",
"raw": "eslint-config-semistandard@6.0.2",
"rawSpec": "6.0.2",
"scope": null,
"spec": "6.0.2",
"type": "version"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/eslint-config-semistandard/-/eslint-config-semistandard-6.0.2.tgz",
"_shasum": "257b96337d2a8f2eb20e20e5f0e8235014a190d4",
"_shrinkwrap": null,
"_spec": "eslint-config-semistandard@6.0.2",
"_where": "/arangodb/arangodb/js/node",
"_where": "/home/pluma/projects/arango/arangodb/js/node",
"author": {
"name": "Dan Flettre",
"email": "fletd01@yahoo.com"
"email": "fletd01@yahoo.com",
"name": "Dan Flettre"
},
"bugs": {
"url": "https://github.com/Flet/eslint-config-semistandard/issues"
@ -102,12 +92,12 @@
"main": "index.js",
"maintainers": [
{
"name": "flet",
"email": "flettre@gmail.com"
"email": "flettre@gmail.com",
"name": "flet"
},
{
"name": "jokeyrhyme",
"email": "jokeyrhyme@gmail.com"
"email": "jokeyrhyme@gmail.com",
"name": "jokeyrhyme"
}
],
"name": "eslint-config-semistandard",

View File

@ -1,16 +1,8 @@
{
"_args": [
[
{
"raw": "eslint-config-standard@5.3.1",
"scope": null,
"escapedName": "eslint-config-standard",
"name": "eslint-config-standard",
"rawSpec": "5.3.1",
"spec": "5.3.1",
"type": "version"
},
"/arangodb/arangodb/js/node"
"eslint-config-standard@5.3.1",
"/home/pluma/projects/arango/arangodb/js/node"
]
],
"_from": "eslint-config-standard@5.3.1",
@ -24,32 +16,30 @@
"tmp": "tmp/eslint-config-standard-5.3.1.tgz_1462372931094_0.24340720404870808"
},
"_npmUser": {
"name": "feross",
"email": "feross@feross.org"
"email": "feross@feross.org",
"name": "feross"
},
"_npmVersion": "2.15.3",
"_phantomChildren": {},
"_requested": {
"raw": "eslint-config-standard@5.3.1",
"scope": null,
"escapedName": "eslint-config-standard",
"name": "eslint-config-standard",
"raw": "eslint-config-standard@5.3.1",
"rawSpec": "5.3.1",
"scope": null,
"spec": "5.3.1",
"type": "version"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-5.3.1.tgz",
"_shasum": "591c969151744132f561d3b915a812ea413fe490",
"_shrinkwrap": null,
"_spec": "eslint-config-standard@5.3.1",
"_where": "/arangodb/arangodb/js/node",
"_where": "/home/pluma/projects/arango/arangodb/js/node",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"name": "Feross Aboukhadijeh",
"url": "http://feross.org/"
},
"bugs": {
@ -100,8 +90,8 @@
"main": "index.js",
"maintainers": [
{
"name": "feross",
"email": "feross@feross.org"
"email": "feross@feross.org",
"name": "feross"
}
],
"name": "eslint-config-standard",

View File

@ -1,16 +1,8 @@
{
"_args": [
[
{
"raw": "eslint-plugin-promise@1.3.2",
"scope": null,
"escapedName": "eslint-plugin-promise",
"name": "eslint-plugin-promise",
"rawSpec": "1.3.2",
"spec": "1.3.2",
"type": "version"
},
"/arangodb/arangodb/js/node"
"eslint-plugin-promise@1.3.2",
"/home/pluma/projects/arango/arangodb/js/node"
]
],
"_from": "eslint-plugin-promise@1.3.2",
@ -24,32 +16,30 @@
"tmp": "tmp/eslint-plugin-promise-1.3.2.tgz_1464981917463_0.6769580077379942"
},
"_npmUser": {
"name": "xjamundx",
"email": "jamund@gmail.com"
"email": "jamund@gmail.com",
"name": "xjamundx"
},
"_npmVersion": "3.8.0",
"_phantomChildren": {},
"_requested": {
"raw": "eslint-plugin-promise@1.3.2",
"scope": null,
"escapedName": "eslint-plugin-promise",
"name": "eslint-plugin-promise",
"raw": "eslint-plugin-promise@1.3.2",
"rawSpec": "1.3.2",
"scope": null,
"spec": "1.3.2",
"type": "version"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-1.3.2.tgz",
"_shasum": "fce332d6f5ff523200a537704863ec3c2422ba7c",
"_shrinkwrap": null,
"_spec": "eslint-plugin-promise@1.3.2",
"_where": "/arangodb/arangodb/js/node",
"_where": "/home/pluma/projects/arango/arangodb/js/node",
"author": {
"name": "jden",
"email": "jason@denizac.org"
"email": "jason@denizac.org",
"name": "jden"
},
"bugs": {
"url": "https://github.com/xjamundx/eslint-plugin-promise/issues"
@ -81,8 +71,8 @@
"license": "ISC",
"maintainers": [
{
"name": "xjamundx",
"email": "jamund@gmail.com"
"email": "jamund@gmail.com",
"name": "xjamundx"
}
],
"name": "eslint-plugin-promise",

View File

@ -1,16 +1,8 @@
{
"_args": [
[
{
"raw": "eslint-plugin-standard@1.3.2",
"scope": null,
"escapedName": "eslint-plugin-standard",
"name": "eslint-plugin-standard",
"rawSpec": "1.3.2",
"spec": "1.3.2",
"type": "version"
},
"/arangodb/arangodb/js/node"
"eslint-plugin-standard@1.3.2",
"/home/pluma/projects/arango/arangodb/js/node"
]
],
"_from": "eslint-plugin-standard@1.3.2",
@ -24,32 +16,30 @@
"tmp": "tmp/eslint-plugin-standard-1.3.2.tgz_1454819023471_0.11581090977415442"
},
"_npmUser": {
"name": "xjamundx",
"email": "jamund@gmail.com"
"email": "jamund@gmail.com",
"name": "xjamundx"
},
"_npmVersion": "3.5.1",
"_phantomChildren": {},
"_requested": {
"raw": "eslint-plugin-standard@1.3.2",
"scope": null,
"escapedName": "eslint-plugin-standard",
"name": "eslint-plugin-standard",
"raw": "eslint-plugin-standard@1.3.2",
"rawSpec": "1.3.2",
"scope": null,
"spec": "1.3.2",
"type": "version"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-1.3.2.tgz",
"_shasum": "1b1a8f849f46c9addb5de7c310f61c2059724ac2",
"_shrinkwrap": null,
"_spec": "eslint-plugin-standard@1.3.2",
"_where": "/arangodb/arangodb/js/node",
"_where": "/home/pluma/projects/arango/arangodb/js/node",
"author": {
"name": "Jamund Ferguson",
"email": "jamund@gmail.com"
"email": "jamund@gmail.com",
"name": "Jamund Ferguson"
},
"bugs": {
"url": "https://github.com/xjamundx/eslint-plugin-standard/issues"
@ -75,12 +65,12 @@
"main": "index.js",
"maintainers": [
{
"name": "xjamundx",
"email": "jamund@gmail.com"
"email": "jamund@gmail.com",
"name": "xjamundx"
},
{
"name": "feross",
"email": "feross@feross.org"
"email": "feross@feross.org",
"name": "feross"
}
],
"name": "eslint-plugin-standard",

View File

@ -1,51 +1,42 @@
{
"_args": [
[
{
"raw": "acorn-jsx@^3.0.0",
"scope": null,
"escapedName": "acorn-jsx",
"name": "acorn-jsx",
"rawSpec": "^3.0.0",
"spec": ">=3.0.0 <4.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/espree"
"acorn-jsx@^3.0.0",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/espree"
]
],
"_from": "acorn-jsx@>=3.0.0 <4.0.0",
"_id": "acorn-jsx@3.0.1",
"_inCache": true,
"_installable": true,
"_location": "/acorn-jsx",
"_location": "/eslint/acorn-jsx",
"_nodeVersion": "6.0.0",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/acorn-jsx-3.0.1.tgz_1462206645285_0.17844340158626437"
},
"_npmUser": {
"name": "rreverser",
"email": "me@rreverser.com"
"email": "me@rreverser.com",
"name": "rreverser"
},
"_npmVersion": "3.8.6",
"_phantomChildren": {},
"_requested": {
"raw": "acorn-jsx@^3.0.0",
"scope": null,
"escapedName": "acorn-jsx",
"name": "acorn-jsx",
"raw": "acorn-jsx@^3.0.0",
"rawSpec": "^3.0.0",
"scope": null,
"spec": ">=3.0.0 <4.0.0",
"type": "range"
},
"_requiredBy": [
"/espree"
"/eslint/espree"
],
"_resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
"_shasum": "afdf9488fb1ecefc8348f6fb22f464e32a58b36b",
"_shrinkwrap": null,
"_spec": "acorn-jsx@^3.0.0",
"_where": "/arangodb/arangodb/js/node/node_modules/espree",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/espree",
"bugs": {
"url": "https://github.com/RReverser/acorn-jsx/issues"
},
@ -67,8 +58,8 @@
"license": "MIT",
"maintainers": [
{
"name": "rreverser",
"email": "me@rreverser.com"
"email": "me@rreverser.com",
"name": "rreverser"
}
],
"name": "acorn-jsx",

View File

@ -1,52 +1,43 @@
{
"_args": [
[
{
"raw": "acorn@^3.2.0",
"scope": null,
"escapedName": "acorn",
"name": "acorn",
"rawSpec": "^3.2.0",
"spec": ">=3.2.0 <4.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/espree"
"acorn@^3.2.0",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/espree"
]
],
"_from": "acorn@>=3.2.0 <4.0.0",
"_id": "acorn@3.2.0",
"_inCache": true,
"_installable": true,
"_location": "/acorn",
"_location": "/eslint/acorn",
"_nodeVersion": "6.2.1",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/acorn-3.2.0.tgz_1465299452629_0.4749092774000019"
},
"_npmUser": {
"name": "marijn",
"email": "marijnh@gmail.com"
"email": "marijnh@gmail.com",
"name": "marijn"
},
"_npmVersion": "3.9.3",
"_phantomChildren": {},
"_requested": {
"raw": "acorn@^3.2.0",
"scope": null,
"escapedName": "acorn",
"name": "acorn",
"raw": "acorn@^3.2.0",
"rawSpec": "^3.2.0",
"scope": null,
"spec": ">=3.2.0 <4.0.0",
"type": "range"
},
"_requiredBy": [
"/acorn-jsx",
"/espree"
"/eslint/acorn-jsx",
"/eslint/espree"
],
"_resolved": "https://registry.npmjs.org/acorn/-/acorn-3.2.0.tgz",
"_shasum": "7a82989ef6f063a237ababaf8df20d2965184b9f",
"_shrinkwrap": null,
"_spec": "acorn@^3.2.0",
"_where": "/arangodb/arangodb/js/node/node_modules/espree",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/espree",
"bin": {
"acorn": "./bin/acorn"
},
@ -240,12 +231,12 @@
"main": "dist/acorn.js",
"maintainers": [
{
"name": "marijn",
"email": "marijnh@gmail.com"
"email": "marijnh@gmail.com",
"name": "marijn"
},
{
"name": "rreverser",
"email": "me@rreverser.com"
"email": "me@rreverser.com",
"name": "rreverser"
}
],
"name": "acorn",

View File

@ -1,54 +1,45 @@
{
"_args": [
[
{
"raw": "ansi-escapes@^1.1.0",
"scope": null,
"escapedName": "ansi-escapes",
"name": "ansi-escapes",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/inquirer"
"ansi-escapes@^1.1.0",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/inquirer"
]
],
"_from": "ansi-escapes@>=1.1.0 <2.0.0",
"_id": "ansi-escapes@1.4.0",
"_inCache": true,
"_installable": true,
"_location": "/ansi-escapes",
"_location": "/eslint/ansi-escapes",
"_nodeVersion": "4.4.2",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/ansi-escapes-1.4.0.tgz_1460925437568_0.228597579523921"
},
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
},
"_npmVersion": "2.15.0",
"_phantomChildren": {},
"_requested": {
"raw": "ansi-escapes@^1.1.0",
"scope": null,
"escapedName": "ansi-escapes",
"name": "ansi-escapes",
"raw": "ansi-escapes@^1.1.0",
"rawSpec": "^1.1.0",
"scope": null,
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/inquirer"
"/eslint/inquirer"
],
"_resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"_shasum": "d3a8a83b319aa67793662b13e761c7911422306e",
"_shrinkwrap": null,
"_spec": "ansi-escapes@^1.1.0",
"_where": "/arangodb/arangodb/js/node/node_modules/inquirer",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/inquirer",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "sindresorhus.com"
},
"bugs": {
@ -101,8 +92,8 @@
"license": "MIT",
"maintainers": [
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
}
],
"name": "ansi-escapes",

View File

@ -1,52 +1,43 @@
{
"_args": [
[
{
"raw": "ansi-regex@^2.0.0",
"scope": null,
"escapedName": "ansi-regex",
"name": "ansi-regex",
"rawSpec": "^2.0.0",
"spec": ">=2.0.0 <3.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/has-ansi"
"ansi-regex@^2.0.0",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/has-ansi"
]
],
"_from": "ansi-regex@>=2.0.0 <3.0.0",
"_id": "ansi-regex@2.0.0",
"_inCache": true,
"_installable": true,
"_location": "/ansi-regex",
"_location": "/eslint/ansi-regex",
"_nodeVersion": "0.12.5",
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
},
"_npmVersion": "2.11.2",
"_phantomChildren": {},
"_requested": {
"raw": "ansi-regex@^2.0.0",
"scope": null,
"escapedName": "ansi-regex",
"name": "ansi-regex",
"raw": "ansi-regex@^2.0.0",
"rawSpec": "^2.0.0",
"scope": null,
"spec": ">=2.0.0 <3.0.0",
"type": "range"
},
"_requiredBy": [
"/has-ansi",
"/inquirer",
"/strip-ansi"
"/eslint/has-ansi",
"/eslint/inquirer",
"/eslint/strip-ansi"
],
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz",
"_shasum": "c5061b6e0ef8a81775e50f5d66151bf6bf371107",
"_shrinkwrap": null,
"_spec": "ansi-regex@^2.0.0",
"_where": "/arangodb/arangodb/js/node/node_modules/has-ansi",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/has-ansi",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "sindresorhus.com"
},
"bugs": {
@ -100,12 +91,12 @@
"license": "MIT",
"maintainers": [
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
},
{
"name": "jbnicolai",
"email": "jappelman@xebia.com"
"email": "jappelman@xebia.com",
"name": "jbnicolai"
}
],
"name": "ansi-regex",

View File

@ -1,54 +1,45 @@
{
"_args": [
[
{
"raw": "ansi-styles@^2.2.1",
"scope": null,
"escapedName": "ansi-styles",
"name": "ansi-styles",
"rawSpec": "^2.2.1",
"spec": ">=2.2.1 <3.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/chalk"
"ansi-styles@^2.2.1",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/chalk"
]
],
"_from": "ansi-styles@>=2.2.1 <3.0.0",
"_id": "ansi-styles@2.2.1",
"_inCache": true,
"_installable": true,
"_location": "/ansi-styles",
"_location": "/eslint/ansi-styles",
"_nodeVersion": "4.3.0",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/ansi-styles-2.2.1.tgz_1459197317833_0.9694824463222176"
},
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
},
"_npmVersion": "3.8.3",
"_phantomChildren": {},
"_requested": {
"raw": "ansi-styles@^2.2.1",
"scope": null,
"escapedName": "ansi-styles",
"name": "ansi-styles",
"raw": "ansi-styles@^2.2.1",
"rawSpec": "^2.2.1",
"scope": null,
"spec": ">=2.2.1 <3.0.0",
"type": "range"
},
"_requiredBy": [
"/chalk"
"/eslint/chalk"
],
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"_shasum": "b432dd3358b634cf75e1e4664368240533c1ddbe",
"_shrinkwrap": null,
"_spec": "ansi-styles@^2.2.1",
"_where": "/arangodb/arangodb/js/node/node_modules/chalk",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/chalk",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "sindresorhus.com"
},
"bugs": {
@ -97,8 +88,8 @@
"license": "MIT",
"maintainers": [
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
}
],
"name": "ansi-styles",

View File

@ -1,54 +1,45 @@
{
"_args": [
[
{
"raw": "array-union@^1.0.1",
"scope": null,
"escapedName": "array-union",
"name": "array-union",
"rawSpec": "^1.0.1",
"spec": ">=1.0.1 <2.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/globby"
"array-union@^1.0.1",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/globby"
]
],
"_from": "array-union@>=1.0.1 <2.0.0",
"_id": "array-union@1.0.2",
"_inCache": true,
"_installable": true,
"_location": "/array-union",
"_location": "/eslint/array-union",
"_nodeVersion": "4.4.2",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/array-union-1.0.2.tgz_1466079411551_0.23353995219804347"
},
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
},
"_npmVersion": "2.15.0",
"_phantomChildren": {},
"_requested": {
"raw": "array-union@^1.0.1",
"scope": null,
"escapedName": "array-union",
"name": "array-union",
"raw": "array-union@^1.0.1",
"rawSpec": "^1.0.1",
"scope": null,
"spec": ">=1.0.1 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/globby"
"/eslint/globby"
],
"_resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"_shasum": "9a34410e4f4e3da23dea375be5be70f24778ec39",
"_shrinkwrap": null,
"_spec": "array-union@^1.0.1",
"_where": "/arangodb/arangodb/js/node/node_modules/globby",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/globby",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "sindresorhus.com"
},
"bugs": {
@ -90,8 +81,8 @@
"license": "MIT",
"maintainers": [
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
}
],
"name": "array-union",

View File

@ -1,54 +1,45 @@
{
"_args": [
[
{
"raw": "array-uniq@^1.0.1",
"scope": null,
"escapedName": "array-uniq",
"name": "array-uniq",
"rawSpec": "^1.0.1",
"spec": ">=1.0.1 <2.0.0",
"type": "range"
},
"/arangodb/arangodb/js/node/node_modules/array-union"
"array-uniq@^1.0.1",
"/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/array-union"
]
],
"_from": "array-uniq@>=1.0.1 <2.0.0",
"_id": "array-uniq@1.0.3",
"_inCache": true,
"_installable": true,
"_location": "/array-uniq",
"_location": "/eslint/array-uniq",
"_nodeVersion": "4.4.2",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/array-uniq-1.0.3.tgz_1466079716839_0.9139188586268574"
},
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
},
"_npmVersion": "2.15.0",
"_phantomChildren": {},
"_requested": {
"raw": "array-uniq@^1.0.1",
"scope": null,
"escapedName": "array-uniq",
"name": "array-uniq",
"raw": "array-uniq@^1.0.1",
"rawSpec": "^1.0.1",
"scope": null,
"spec": ">=1.0.1 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/array-union"
"/eslint/array-union"
],
"_resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"_shasum": "af6ac877a25cc7f74e058894753858dfdb24fdb6",
"_shrinkwrap": null,
"_spec": "array-uniq@^1.0.1",
"_where": "/arangodb/arangodb/js/node/node_modules/array-union",
"_where": "/home/pluma/projects/arango/arangodb/js/node/node_modules/eslint/node_modules/array-union",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"name": "Sindre Sorhus",
"url": "sindresorhus.com"
},
"bugs": {
@ -88,8 +79,8 @@
"license": "MIT",
"maintainers": [
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
"email": "sindresorhus@gmail.com",
"name": "sindresorhus"
}
],
"name": "array-uniq",

Some files were not shown because too many files have changed in this diff Show More