Prepare for release 2.6.0.

This commit is contained in:
Michael Teeuw 2019-01-01 15:52:29 +01:00
parent 7e69fa39eb
commit b33663c9f8
4 changed files with 607 additions and 114 deletions

View File

@ -5,12 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
--- ---
## [2.6.0] - Unreleased ## [2.6.0] - 2019-01-01
*This release is scheduled to be released on 2019-01-01.* ### Experimental ✨
- New default [module weather](modules/default/weather). This module will eventually replace the current `currentweather` and `weatherforecast` modules. The new module is still pretty experimental, but it's included so you can give it a try and help us improve this module. Please give us you feedback using [this forum post](https://forum.magicmirror.builders/topic/9335/default-weather-module-refactoring).
### Experimental
- New default [module weather](modules/default/weather).
### Added ### Added
- Possibility to add classes to the cell of symbol, title and time of the events of calendar. - Possibility to add classes to the cell of symbol, title and time of the events of calendar.

47
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "magicmirror", "name": "magicmirror",
"version": "2.6.0-dev", "version": "2.6.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
@ -108,13 +108,26 @@
} }
}, },
"ajv": { "ajv": {
"version": "4.11.8", "version": "6.5.5",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz",
"integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==",
"dev": true,
"requires": { "requires": {
"co": "^4.6.0", "fast-deep-equal": "^2.0.1",
"json-stable-stringify": "^1.0.1" "fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
},
"dependencies": {
"fast-deep-equal": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
"integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
},
"json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
}
} }
}, },
"ajv-keywords": { "ajv-keywords": {
@ -5880,9 +5893,9 @@
} }
}, },
"rrule-alt": { "rrule-alt": {
"version": "2.2.7", "version": "2.2.8",
"resolved": "https://registry.npmjs.org/rrule-alt/-/rrule-alt-2.2.7.tgz", "resolved": "https://registry.npmjs.org/rrule-alt/-/rrule-alt-2.2.8.tgz",
"integrity": "sha512-z/rwEu9kc+uAw/0BD+0D+qi4PAcOpeACGV7MKmeM9cYs+sSUzhp8lETn7tCHJJB1mOiXJVLXqh8GlaQi+Lyp4g==" "integrity": "sha1-oxC23Gy8yKEA5Vgj+T9ia9QbFoA="
}, },
"run-async": { "run-async": {
"version": "2.3.0", "version": "2.3.0",
@ -6734,6 +6747,16 @@
"string-width": "^2.0.0" "string-width": "^2.0.0"
}, },
"dependencies": { "dependencies": {
"ajv": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz",
"integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
"dev": true,
"requires": {
"co": "^4.6.0",
"json-stable-stringify": "^1.0.1"
}
},
"ansi-regex": { "ansi-regex": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
@ -7125,7 +7148,6 @@
"version": "4.2.2", "version": "4.2.2",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
"integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
"dev": true,
"requires": { "requires": {
"punycode": "^2.1.0" "punycode": "^2.1.0"
}, },
@ -7133,8 +7155,7 @@
"punycode": { "punycode": {
"version": "2.1.1", "version": "2.1.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
"dev": true
} }
} }
}, },

View File

@ -1,6 +1,6 @@
{ {
"name": "magicmirror", "name": "magicmirror",
"version": "2.6.0-dev", "version": "2.6.0",
"description": "The open source modular smart mirror platform.", "description": "The open source modular smart mirror platform.",
"main": "js/electron.js", "main": "js/electron.js",
"scripts": { "scripts": {

664
vendor/package-lock.json generated vendored
View File

@ -3,6 +3,11 @@
"requires": true, "requires": true,
"lockfileVersion": 1, "lockfileVersion": 1,
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": {
"version": "5.6.3",
"resolved": "https://npm.fontawesome.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.6.3.tgz",
"integrity": "sha512-s5PLdI9NYgjBvfrv6rhirPHlAHWx+Sfo/IjsAeiXYfmemC/GSjwsyz1wLnGPazbLPXWfk62ks980o9AmsxYUEQ=="
},
"a-sync-waterfall": { "a-sync-waterfall": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.0.tgz", "resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.0.tgz",
@ -19,8 +24,8 @@
"integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==",
"optional": true, "optional": true,
"requires": { "requires": {
"micromatch": "2.3.11", "micromatch": "^2.1.5",
"normalize-path": "2.1.1" "normalize-path": "^2.0.0"
} }
}, },
"arr-diff": { "arr-diff": {
@ -29,7 +34,7 @@
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"optional": true, "optional": true,
"requires": { "requires": {
"arr-flatten": "1.1.0" "arr-flatten": "^1.0.1"
} }
}, },
"arr-flatten": { "arr-flatten": {
@ -73,7 +78,7 @@
"integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
"optional": true, "optional": true,
"requires": { "requires": {
"balanced-match": "1.0.0", "balanced-match": "^1.0.0",
"concat-map": "0.0.1" "concat-map": "0.0.1"
} }
}, },
@ -83,9 +88,9 @@
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"optional": true, "optional": true,
"requires": { "requires": {
"expand-range": "1.8.2", "expand-range": "^1.8.1",
"preserve": "0.2.0", "preserve": "^0.2.0",
"repeat-element": "1.1.2" "repeat-element": "^1.1.2"
} }
}, },
"camelcase": { "camelcase": {
@ -99,14 +104,15 @@
"integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=",
"optional": true, "optional": true,
"requires": { "requires": {
"anymatch": "1.3.2", "anymatch": "^1.3.0",
"async-each": "1.0.1", "async-each": "^1.0.0",
"glob-parent": "2.0.0", "fsevents": "^1.0.0",
"inherits": "2.0.3", "glob-parent": "^2.0.0",
"is-binary-path": "1.0.1", "inherits": "^2.0.1",
"is-glob": "2.0.1", "is-binary-path": "^1.0.0",
"path-is-absolute": "1.0.1", "is-glob": "^2.0.0",
"readdirp": "2.1.0" "path-is-absolute": "^1.0.0",
"readdirp": "^2.0.0"
} }
}, },
"cliui": { "cliui": {
@ -114,9 +120,9 @@
"resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
"integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
"requires": { "requires": {
"string-width": "1.0.2", "string-width": "^1.0.1",
"strip-ansi": "3.0.1", "strip-ansi": "^3.0.1",
"wrap-ansi": "2.1.0" "wrap-ansi": "^2.0.0"
} }
}, },
"code-point-at": { "code-point-at": {
@ -147,7 +153,7 @@
"integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
"optional": true, "optional": true,
"requires": { "requires": {
"is-posix-bracket": "0.1.1" "is-posix-bracket": "^0.1.0"
} }
}, },
"expand-range": { "expand-range": {
@ -156,7 +162,7 @@
"integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
"optional": true, "optional": true,
"requires": { "requires": {
"fill-range": "2.2.3" "fill-range": "^2.1.0"
} }
}, },
"extglob": { "extglob": {
@ -165,7 +171,7 @@
"integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
"optional": true, "optional": true,
"requires": { "requires": {
"is-extglob": "1.0.0" "is-extglob": "^1.0.0"
} }
}, },
"filename-regex": { "filename-regex": {
@ -180,11 +186,11 @@
"integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
"optional": true, "optional": true,
"requires": { "requires": {
"is-number": "2.1.0", "is-number": "^2.1.0",
"isobject": "2.1.0", "isobject": "^2.0.0",
"randomatic": "1.1.7", "randomatic": "^1.1.3",
"repeat-element": "1.1.2", "repeat-element": "^1.1.2",
"repeat-string": "1.6.1" "repeat-string": "^1.5.2"
} }
}, },
"font-awesome": { "font-awesome": {
@ -204,7 +210,469 @@
"integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
"optional": true, "optional": true,
"requires": { "requires": {
"for-in": "1.0.2" "for-in": "^1.0.1"
}
},
"fsevents": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz",
"integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==",
"optional": true,
"requires": {
"nan": "^2.9.2",
"node-pre-gyp": "^0.10.0"
},
"dependencies": {
"abbrev": {
"version": "1.1.1",
"bundled": true,
"optional": true
},
"ansi-regex": {
"version": "2.1.1",
"bundled": true
},
"aproba": {
"version": "1.2.0",
"bundled": true,
"optional": true
},
"are-we-there-yet": {
"version": "1.1.4",
"bundled": true,
"optional": true,
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^2.0.6"
}
},
"balanced-match": {
"version": "1.0.0",
"bundled": true
},
"brace-expansion": {
"version": "1.1.11",
"bundled": true,
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"chownr": {
"version": "1.0.1",
"bundled": true,
"optional": true
},
"code-point-at": {
"version": "1.1.0",
"bundled": true
},
"concat-map": {
"version": "0.0.1",
"bundled": true
},
"console-control-strings": {
"version": "1.1.0",
"bundled": true
},
"core-util-is": {
"version": "1.0.2",
"bundled": true,
"optional": true
},
"debug": {
"version": "2.6.9",
"bundled": true,
"optional": true,
"requires": {
"ms": "2.0.0"
}
},
"deep-extend": {
"version": "0.5.1",
"bundled": true,
"optional": true
},
"delegates": {
"version": "1.0.0",
"bundled": true,
"optional": true
},
"detect-libc": {
"version": "1.0.3",
"bundled": true,
"optional": true
},
"fs-minipass": {
"version": "1.2.5",
"bundled": true,
"optional": true,
"requires": {
"minipass": "^2.2.1"
}
},
"fs.realpath": {
"version": "1.0.0",
"bundled": true,
"optional": true
},
"gauge": {
"version": "2.7.4",
"bundled": true,
"optional": true,
"requires": {
"aproba": "^1.0.3",
"console-control-strings": "^1.0.0",
"has-unicode": "^2.0.0",
"object-assign": "^4.1.0",
"signal-exit": "^3.0.0",
"string-width": "^1.0.1",
"strip-ansi": "^3.0.1",
"wide-align": "^1.1.0"
}
},
"glob": {
"version": "7.1.2",
"bundled": true,
"optional": true,
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
}
},
"has-unicode": {
"version": "2.0.1",
"bundled": true,
"optional": true
},
"iconv-lite": {
"version": "0.4.21",
"bundled": true,
"optional": true,
"requires": {
"safer-buffer": "^2.1.0"
}
},
"ignore-walk": {
"version": "3.0.1",
"bundled": true,
"optional": true,
"requires": {
"minimatch": "^3.0.4"
}
},
"inflight": {
"version": "1.0.6",
"bundled": true,
"optional": true,
"requires": {
"once": "^1.3.0",
"wrappy": "1"
}
},
"inherits": {
"version": "2.0.3",
"bundled": true
},
"ini": {
"version": "1.3.5",
"bundled": true,
"optional": true
},
"is-fullwidth-code-point": {
"version": "1.0.0",
"bundled": true,
"requires": {
"number-is-nan": "^1.0.0"
}
},
"isarray": {
"version": "1.0.0",
"bundled": true,
"optional": true
},
"minimatch": {
"version": "3.0.4",
"bundled": true,
"requires": {
"brace-expansion": "^1.1.7"
}
},
"minimist": {
"version": "0.0.8",
"bundled": true
},
"minipass": {
"version": "2.2.4",
"bundled": true,
"requires": {
"safe-buffer": "^5.1.1",
"yallist": "^3.0.0"
}
},
"minizlib": {
"version": "1.1.0",
"bundled": true,
"optional": true,
"requires": {
"minipass": "^2.2.1"
}
},
"mkdirp": {
"version": "0.5.1",
"bundled": true,
"requires": {
"minimist": "0.0.8"
}
},
"ms": {
"version": "2.0.0",
"bundled": true,
"optional": true
},
"needle": {
"version": "2.2.0",
"bundled": true,
"optional": true,
"requires": {
"debug": "^2.1.2",
"iconv-lite": "^0.4.4",
"sax": "^1.2.4"
}
},
"node-pre-gyp": {
"version": "0.10.0",
"bundled": true,
"optional": true,
"requires": {
"detect-libc": "^1.0.2",
"mkdirp": "^0.5.1",
"needle": "^2.2.0",
"nopt": "^4.0.1",
"npm-packlist": "^1.1.6",
"npmlog": "^4.0.2",
"rc": "^1.1.7",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"tar": "^4"
}
},
"nopt": {
"version": "4.0.1",
"bundled": true,
"optional": true,
"requires": {
"abbrev": "1",
"osenv": "^0.1.4"
}
},
"npm-bundled": {
"version": "1.0.3",
"bundled": true,
"optional": true
},
"npm-packlist": {
"version": "1.1.10",
"bundled": true,
"optional": true,
"requires": {
"ignore-walk": "^3.0.1",
"npm-bundled": "^1.0.1"
}
},
"npmlog": {
"version": "4.1.2",
"bundled": true,
"optional": true,
"requires": {
"are-we-there-yet": "~1.1.2",
"console-control-strings": "~1.1.0",
"gauge": "~2.7.3",
"set-blocking": "~2.0.0"
}
},
"number-is-nan": {
"version": "1.0.1",
"bundled": true
},
"object-assign": {
"version": "4.1.1",
"bundled": true,
"optional": true
},
"once": {
"version": "1.4.0",
"bundled": true,
"requires": {
"wrappy": "1"
}
},
"os-homedir": {
"version": "1.0.2",
"bundled": true,
"optional": true
},
"os-tmpdir": {
"version": "1.0.2",
"bundled": true,
"optional": true
},
"osenv": {
"version": "0.1.5",
"bundled": true,
"optional": true,
"requires": {
"os-homedir": "^1.0.0",
"os-tmpdir": "^1.0.0"
}
},
"path-is-absolute": {
"version": "1.0.1",
"bundled": true,
"optional": true
},
"process-nextick-args": {
"version": "2.0.0",
"bundled": true,
"optional": true
},
"rc": {
"version": "1.2.7",
"bundled": true,
"optional": true,
"requires": {
"deep-extend": "^0.5.1",
"ini": "~1.3.0",
"minimist": "^1.2.0",
"strip-json-comments": "~2.0.1"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"bundled": true,
"optional": true
}
}
},
"readable-stream": {
"version": "2.3.6",
"bundled": true,
"optional": true,
"requires": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
"isarray": "~1.0.0",
"process-nextick-args": "~2.0.0",
"safe-buffer": "~5.1.1",
"string_decoder": "~1.1.1",
"util-deprecate": "~1.0.1"
}
},
"rimraf": {
"version": "2.6.2",
"bundled": true,
"optional": true,
"requires": {
"glob": "^7.0.5"
}
},
"safe-buffer": {
"version": "5.1.1",
"bundled": true
},
"safer-buffer": {
"version": "2.1.2",
"bundled": true,
"optional": true
},
"sax": {
"version": "1.2.4",
"bundled": true,
"optional": true
},
"semver": {
"version": "5.5.0",
"bundled": true,
"optional": true
},
"set-blocking": {
"version": "2.0.0",
"bundled": true,
"optional": true
},
"signal-exit": {
"version": "3.0.2",
"bundled": true,
"optional": true
},
"string-width": {
"version": "1.0.2",
"bundled": true,
"requires": {
"code-point-at": "^1.0.0",
"is-fullwidth-code-point": "^1.0.0",
"strip-ansi": "^3.0.0"
}
},
"string_decoder": {
"version": "1.1.1",
"bundled": true,
"optional": true,
"requires": {
"safe-buffer": "~5.1.0"
}
},
"strip-ansi": {
"version": "3.0.1",
"bundled": true,
"requires": {
"ansi-regex": "^2.0.0"
}
},
"strip-json-comments": {
"version": "2.0.1",
"bundled": true,
"optional": true
},
"tar": {
"version": "4.4.1",
"bundled": true,
"optional": true,
"requires": {
"chownr": "^1.0.1",
"fs-minipass": "^1.2.5",
"minipass": "^2.2.4",
"minizlib": "^1.1.0",
"mkdirp": "^0.5.0",
"safe-buffer": "^5.1.1",
"yallist": "^3.0.2"
}
},
"util-deprecate": {
"version": "1.0.2",
"bundled": true,
"optional": true
},
"wide-align": {
"version": "1.1.2",
"bundled": true,
"optional": true,
"requires": {
"string-width": "^1.0.2"
}
},
"wrappy": {
"version": "1.0.2",
"bundled": true
},
"yallist": {
"version": "3.0.2",
"bundled": true
}
} }
}, },
"glob-base": { "glob-base": {
@ -213,8 +681,8 @@
"integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=",
"optional": true, "optional": true,
"requires": { "requires": {
"glob-parent": "2.0.0", "glob-parent": "^2.0.0",
"is-glob": "2.0.1" "is-glob": "^2.0.0"
} }
}, },
"glob-parent": { "glob-parent": {
@ -222,7 +690,7 @@
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
"integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
"requires": { "requires": {
"is-glob": "2.0.1" "is-glob": "^2.0.0"
} }
}, },
"graceful-fs": { "graceful-fs": {
@ -247,7 +715,7 @@
"integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
"optional": true, "optional": true,
"requires": { "requires": {
"binary-extensions": "1.10.0" "binary-extensions": "^1.0.0"
} }
}, },
"is-buffer": { "is-buffer": {
@ -267,7 +735,7 @@
"integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=",
"optional": true, "optional": true,
"requires": { "requires": {
"is-primitive": "2.0.0" "is-primitive": "^2.0.0"
} }
}, },
"is-extendable": { "is-extendable": {
@ -286,7 +754,7 @@
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
"integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
"requires": { "requires": {
"number-is-nan": "1.0.1" "number-is-nan": "^1.0.0"
} }
}, },
"is-glob": { "is-glob": {
@ -294,7 +762,7 @@
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
"integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
"requires": { "requires": {
"is-extglob": "1.0.0" "is-extglob": "^1.0.0"
} }
}, },
"is-number": { "is-number": {
@ -303,7 +771,7 @@
"integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=",
"optional": true, "optional": true,
"requires": { "requires": {
"kind-of": "3.2.2" "kind-of": "^3.0.2"
} }
}, },
"is-posix-bracket": { "is-posix-bracket": {
@ -337,7 +805,7 @@
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"requires": { "requires": {
"is-buffer": "1.1.5" "is-buffer": "^1.1.5"
} }
}, },
"lcid": { "lcid": {
@ -345,7 +813,7 @@
"resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
"integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
"requires": { "requires": {
"invert-kv": "1.0.0" "invert-kv": "^1.0.0"
} }
}, },
"micromatch": { "micromatch": {
@ -354,19 +822,19 @@
"integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=",
"optional": true, "optional": true,
"requires": { "requires": {
"arr-diff": "2.0.0", "arr-diff": "^2.0.0",
"array-unique": "0.2.1", "array-unique": "^0.2.1",
"braces": "1.8.5", "braces": "^1.8.2",
"expand-brackets": "0.1.5", "expand-brackets": "^0.1.4",
"extglob": "0.3.2", "extglob": "^0.3.1",
"filename-regex": "2.0.1", "filename-regex": "^2.0.0",
"is-extglob": "1.0.0", "is-extglob": "^1.0.0",
"is-glob": "2.0.1", "is-glob": "^2.0.1",
"kind-of": "3.2.2", "kind-of": "^3.0.2",
"normalize-path": "2.1.1", "normalize-path": "^2.0.1",
"object.omit": "2.0.1", "object.omit": "^2.0.0",
"parse-glob": "3.0.4", "parse-glob": "^3.0.4",
"regex-cache": "0.4.4" "regex-cache": "^0.4.2"
} }
}, },
"minimatch": { "minimatch": {
@ -375,7 +843,7 @@
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
"optional": true, "optional": true,
"requires": { "requires": {
"brace-expansion": "1.1.8" "brace-expansion": "^1.1.7"
} }
}, },
"moment": { "moment": {
@ -388,15 +856,21 @@
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.13.tgz", "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.13.tgz",
"integrity": "sha1-mc5cfYJyYusPH3AgRBd/YHRde5A=", "integrity": "sha1-mc5cfYJyYusPH3AgRBd/YHRde5A=",
"requires": { "requires": {
"moment": "2.18.1" "moment": ">= 2.9.0"
} }
}, },
"nan": {
"version": "2.12.1",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz",
"integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==",
"optional": true
},
"normalize-path": { "normalize-path": {
"version": "2.1.1", "version": "2.1.1",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"requires": { "requires": {
"remove-trailing-separator": "1.1.0" "remove-trailing-separator": "^1.0.1"
} }
}, },
"number-is-nan": { "number-is-nan": {
@ -409,10 +883,10 @@
"resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.0.1.tgz", "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.0.1.tgz",
"integrity": "sha1-TedKPlULr2+jNwMj89HHwqhr3E0=", "integrity": "sha1-TedKPlULr2+jNwMj89HHwqhr3E0=",
"requires": { "requires": {
"a-sync-waterfall": "1.0.0", "a-sync-waterfall": "^1.0.0",
"asap": "2.0.6", "asap": "^2.0.3",
"chokidar": "1.7.0", "chokidar": "^1.6.0",
"yargs": "3.32.0" "yargs": "^3.32.0"
} }
}, },
"object.omit": { "object.omit": {
@ -421,8 +895,8 @@
"integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=",
"optional": true, "optional": true,
"requires": { "requires": {
"for-own": "0.1.5", "for-own": "^0.1.4",
"is-extendable": "0.1.1" "is-extendable": "^0.1.1"
} }
}, },
"os-locale": { "os-locale": {
@ -430,7 +904,7 @@
"resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
"integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
"requires": { "requires": {
"lcid": "1.0.0" "lcid": "^1.0.0"
} }
}, },
"parse-glob": { "parse-glob": {
@ -439,10 +913,10 @@
"integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=",
"optional": true, "optional": true,
"requires": { "requires": {
"glob-base": "0.3.0", "glob-base": "^0.3.0",
"is-dotfile": "1.0.3", "is-dotfile": "^1.0.0",
"is-extglob": "1.0.0", "is-extglob": "^1.0.0",
"is-glob": "2.0.1" "is-glob": "^2.0.0"
} }
}, },
"path-is-absolute": { "path-is-absolute": {
@ -469,8 +943,8 @@
"integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==",
"optional": true, "optional": true,
"requires": { "requires": {
"is-number": "3.0.0", "is-number": "^3.0.0",
"kind-of": "4.0.0" "kind-of": "^4.0.0"
}, },
"dependencies": { "dependencies": {
"is-number": { "is-number": {
@ -479,7 +953,7 @@
"integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
"optional": true, "optional": true,
"requires": { "requires": {
"kind-of": "3.2.2" "kind-of": "^3.0.2"
}, },
"dependencies": { "dependencies": {
"kind-of": { "kind-of": {
@ -488,7 +962,7 @@
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"optional": true, "optional": true,
"requires": { "requires": {
"is-buffer": "1.1.5" "is-buffer": "^1.1.5"
} }
} }
} }
@ -499,7 +973,7 @@
"integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
"optional": true, "optional": true,
"requires": { "requires": {
"is-buffer": "1.1.5" "is-buffer": "^1.1.5"
} }
} }
} }
@ -510,13 +984,13 @@
"integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==",
"optional": true, "optional": true,
"requires": { "requires": {
"core-util-is": "1.0.2", "core-util-is": "~1.0.0",
"inherits": "2.0.3", "inherits": "~2.0.3",
"isarray": "1.0.0", "isarray": "~1.0.0",
"process-nextick-args": "1.0.7", "process-nextick-args": "~1.0.6",
"safe-buffer": "5.1.1", "safe-buffer": "~5.1.1",
"string_decoder": "1.0.3", "string_decoder": "~1.0.3",
"util-deprecate": "1.0.2" "util-deprecate": "~1.0.1"
} }
}, },
"readdirp": { "readdirp": {
@ -525,10 +999,10 @@
"integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=",
"optional": true, "optional": true,
"requires": { "requires": {
"graceful-fs": "4.1.11", "graceful-fs": "^4.1.2",
"minimatch": "3.0.4", "minimatch": "^3.0.2",
"readable-stream": "2.3.3", "readable-stream": "^2.0.2",
"set-immediate-shim": "1.0.1" "set-immediate-shim": "^1.0.1"
} }
}, },
"regex-cache": { "regex-cache": {
@ -537,7 +1011,7 @@
"integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==",
"optional": true, "optional": true,
"requires": { "requires": {
"is-equal-shallow": "0.1.3" "is-equal-shallow": "^0.1.3"
} }
}, },
"remove-trailing-separator": { "remove-trailing-separator": {
@ -572,9 +1046,9 @@
"resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
"requires": { "requires": {
"code-point-at": "1.1.0", "code-point-at": "^1.0.0",
"is-fullwidth-code-point": "1.0.0", "is-fullwidth-code-point": "^1.0.0",
"strip-ansi": "3.0.1" "strip-ansi": "^3.0.0"
} }
}, },
"string_decoder": { "string_decoder": {
@ -583,7 +1057,7 @@
"integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
"optional": true, "optional": true,
"requires": { "requires": {
"safe-buffer": "5.1.1" "safe-buffer": "~5.1.0"
} }
}, },
"strip-ansi": { "strip-ansi": {
@ -591,7 +1065,7 @@
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"requires": { "requires": {
"ansi-regex": "2.1.1" "ansi-regex": "^2.0.0"
} }
}, },
"util-deprecate": { "util-deprecate": {
@ -615,8 +1089,8 @@
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
"integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
"requires": { "requires": {
"string-width": "1.0.2", "string-width": "^1.0.1",
"strip-ansi": "3.0.1" "strip-ansi": "^3.0.1"
} }
}, },
"y18n": { "y18n": {
@ -629,13 +1103,13 @@
"resolved": "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz", "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz",
"integrity": "sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU=", "integrity": "sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU=",
"requires": { "requires": {
"camelcase": "2.1.1", "camelcase": "^2.0.1",
"cliui": "3.2.0", "cliui": "^3.0.3",
"decamelize": "1.2.0", "decamelize": "^1.1.1",
"os-locale": "1.4.0", "os-locale": "^1.4.0",
"string-width": "1.0.2", "string-width": "^1.0.1",
"window-size": "0.1.4", "window-size": "^0.1.4",
"y18n": "3.2.1" "y18n": "^3.2.0"
} }
} }
} }