2019-03-24 19:29:46 +00:00
|
|
|
# ## Format of this file
|
2018-08-19 05:14:05 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# The top-level keys in this file correspond with directories under resources/lib/.
|
|
|
|
|
# These in turn are registered as module bundles in Resources.php.
|
2018-08-19 05:14:05 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# ## How to install an foreign resource
|
|
|
|
|
#
|
|
|
|
|
# 1. Add or update the url(s) for the upstream module to this YAML file.
|
|
|
|
|
#
|
|
|
|
|
# Look at other modules for examples. To install a module from npm,
|
|
|
|
|
# we use the tarball distribution from npmjs.org. This is the same as what
|
|
|
|
|
# the npm CLI uses. For example, to install jquery-client@9.2.0, use:
|
|
|
|
|
# <https://registry.npmjs.org/jquery-client/-/jquery-client-9.2.0.tgz>.
|
|
|
|
|
#
|
|
|
|
|
# 2. If the upstream maintainers publish an integrity hash, set that as well.
|
|
|
|
|
# Otherwise, use manageForeignResources.php to compute the integrity hash.
|
|
|
|
|
#
|
|
|
|
|
# Run `php manageForeignResources.php make-sri "my module name"`
|
2018-08-19 05:14:05 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# This will download the specified file(s) and print their integrity hashes,
|
|
|
|
|
# already formatted in YAML, ready for copying to this file.
|
2018-08-19 23:02:29 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# 3. Last but not least, decide where files go.
|
|
|
|
|
#
|
|
|
|
|
# If you specified a direct url to JavaScript or CSS file, this step is
|
|
|
|
|
# optional. See the corresponding documentation section below for more
|
|
|
|
|
# information and examples for "dest" keys. Once you've set any "dest" keys,
|
|
|
|
|
# run `php manageForeignResources.php update "my module name"`.
|
|
|
|
|
#
|
|
|
|
|
# ## Package formats
|
|
|
|
|
#
|
|
|
|
|
# Each top-level key must use one of these types:
|
|
|
|
|
#
|
|
|
|
|
# - `file`: For a plain file.
|
|
|
|
|
# - `multi-file`: For multiple plain files.
|
|
|
|
|
# - `tar`: For a tarball archive (may be compressed).
|
|
|
|
|
#
|
|
|
|
|
# ### The "file" type
|
2018-08-19 23:02:29 +00:00
|
|
|
#
|
2018-09-12 16:13:53 +00:00
|
|
|
# * `src`: Full URL to the remote resource.
|
2018-08-19 23:02:29 +00:00
|
|
|
# * `integrity`: Cryptographic hash (integrity metadata format per <https://www.w3.org/TR/SRI/>).
|
2019-03-24 19:29:46 +00:00
|
|
|
# * `dest`: [optional] The file name to use in the module directory. Default: Basename of URL.
|
|
|
|
|
#
|
|
|
|
|
# For example, the following would produce resources/lib/mymodule/x.js:
|
|
|
|
|
#
|
|
|
|
|
# mymodule:
|
|
|
|
|
# type: file
|
|
|
|
|
# src: https://mymodule.example/1.2.3/x.js
|
|
|
|
|
# integrity: sha384-Je+NE+saisQuoi
|
2018-08-25 04:43:43 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# ### The "multi-file" type
|
2018-08-25 04:43:43 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# * `files`: An object mapping destination paths to `src` and `integrity` keys.
|
|
|
|
|
#
|
|
|
|
|
# For example:
|
|
|
|
|
#
|
|
|
|
|
# mymodule:
|
|
|
|
|
# type: multi-file
|
|
|
|
|
# files:
|
|
|
|
|
# x.js:
|
|
|
|
|
# src: https://mymodule.example/1.2.3/x.js
|
|
|
|
|
# integrity: sha384-Je+NE+saisQuoi
|
|
|
|
|
# x.css:
|
|
|
|
|
# src: https://mymodule.example/1.2.3/x.css
|
|
|
|
|
# integrity: sha384-Je+NE+saisQuoi
|
|
|
|
|
#
|
|
|
|
|
# ### The "tar" type
|
2018-08-25 04:43:43 +00:00
|
|
|
#
|
2018-09-12 16:13:53 +00:00
|
|
|
# * `src`: Full URL to the remote resource.
|
2018-08-25 04:43:43 +00:00
|
|
|
# * `integrity`: Cryptographic hash (integrity metadata format per <https://www.w3.org/TR/SRI/>).
|
2019-03-24 19:29:46 +00:00
|
|
|
# * `dest`: [optional] The default is to extract all files from the package.
|
|
|
|
|
# To only extract some of the files or directories, use "dest" to specify
|
|
|
|
|
# files, directories, and/or glob patterns. You can use a site like https://unpkg.com/
|
|
|
|
|
# to easily inspect an npm package, like <https://unpkg.com/jquery-client@2.0.2/>.
|
|
|
|
|
#
|
|
|
|
|
# For example:
|
2018-08-25 04:43:43 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# mymodule:
|
|
|
|
|
# type: tar
|
|
|
|
|
# src: https://registry.npmjs.org/jquery-client/-/jquery-client-9.2.0.tgz
|
|
|
|
|
# integrity: sha384-Je+NE+saisQuoi
|
|
|
|
|
# dest:
|
|
|
|
|
# package/dist/x.js:
|
|
|
|
|
# package/dist/i18n:
|
|
|
|
|
# package/dist/style/*.css:
|
2018-08-25 04:43:43 +00:00
|
|
|
#
|
2019-03-24 19:29:46 +00:00
|
|
|
# The would extract the "x.js" file, the "i18n" directory (recursive),
|
|
|
|
|
# and any "*.css" files from the "style" directory.
|
2018-08-25 04:43:43 +00:00
|
|
|
#
|
2018-09-10 23:24:55 +00:00
|
|
|
|
2018-09-10 23:26:21 +00:00
|
|
|
CLDRPluralRuleParser:
|
|
|
|
|
type: file
|
2018-10-04 21:17:30 +00:00
|
|
|
src: https://raw.githubusercontent.com/santhoshtr/CLDRPluralRuleParser/0dda851/src/CLDRPluralRuleParser.js
|
|
|
|
|
integrity: sha384-M4taeYYG2+9Ob1/La16iO+zlRRmBV5lBR3xUKkQT6kfkJ0aLbCi6yc0RYI1BDzdh
|
2018-09-10 23:26:21 +00:00
|
|
|
|
2018-09-11 02:41:19 +00:00
|
|
|
easy-deflate:
|
|
|
|
|
type: multi-file
|
|
|
|
|
files:
|
|
|
|
|
deflate.js:
|
|
|
|
|
src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/deflate.js
|
|
|
|
|
integrity: sha384-sHnZLDSWMUhA2w9ygkzCK8YFvoh/fQKY6lXMbvmrYzjuNURiLB0DZFCDNMpGyZ77
|
|
|
|
|
easydeflate.js:
|
|
|
|
|
src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/easydeflate.js
|
|
|
|
|
integrity: sha384-EwPfP2RMkDPa1HkzQsXgzTsy1KEjcIzQPA1HDS/JPHjvEMvVUsCxWwm1oXql/jk2
|
|
|
|
|
README.md:
|
|
|
|
|
src: https://raw.githubusercontent.com/edg2s/Easy-Deflate/7a6056e5302f6f385ff2efa60afda45b4ad81e51/README.md
|
|
|
|
|
integrity: sha384-6kwcfCLivvqXBZy2ATyya+mTVWLk3eaQyBdC6tbpBtkygnBrM2SNkq3jz/l7IkvP
|
|
|
|
|
|
2018-09-10 23:24:55 +00:00
|
|
|
html5shiv:
|
|
|
|
|
type: file
|
|
|
|
|
src: https://raw.githubusercontent.com/aFarkas/html5shiv/3.7.3/src/html5shiv.js
|
|
|
|
|
integrity: sha384-RPXhaTf22QktT8KTwZ6bUz/C+7CnccaIw5W/y/t0FW5WSDGj3wc3YtRIJC0w47in
|
2018-09-10 23:26:21 +00:00
|
|
|
|
|
|
|
|
jquery:
|
2019-08-26 19:41:08 +00:00
|
|
|
type: multi-file
|
|
|
|
|
files:
|
|
|
|
|
# Integrities from link modals https://code.jquery.com/jquery/
|
|
|
|
|
jquery.migrate.js:
|
2019-08-26 19:54:22 +00:00
|
|
|
src: https://code.jquery.com/jquery-migrate-3.1.0.js
|
|
|
|
|
integrity: sha256-oA/lsZCgEPkbv/byAkeXSTEZTsGOPZCrtbyFBHmcGKM=
|
2019-08-26 19:41:08 +00:00
|
|
|
jquery.js:
|
2019-08-26 19:52:30 +00:00
|
|
|
src: https://code.jquery.com/jquery-3.4.1.js
|
|
|
|
|
integrity: sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=
|
2018-09-10 23:24:55 +00:00
|
|
|
|
2019-04-27 04:55:16 +00:00
|
|
|
jquery.chosen:
|
|
|
|
|
type: multi-file
|
|
|
|
|
files:
|
|
|
|
|
LICENSE:
|
|
|
|
|
src: https://raw.githubusercontent.com/harvesthq/chosen/v1.8.2/LICENSE.md
|
|
|
|
|
integrity: sha384-hxUqOVbJZTd9clMlf9yV18PjyKQ2rUOCXLgFNYlV/blpyeCyiUCpmVjAmNP0yc8M
|
|
|
|
|
README.md:
|
|
|
|
|
src: https://raw.githubusercontent.com/harvesthq/chosen/v1.8.2/README.md
|
|
|
|
|
integrity: sha384-ps8fQiOF1anPibj6QMNii4OcAbZNcy+dkmdJUZzqBgmfjaPth9YDe0TRIk89lfID
|
|
|
|
|
# Following files taken from CDN because they're built, and don't exist in the repo
|
|
|
|
|
chosen-sprite.png:
|
|
|
|
|
src: https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.2/chosen-sprite.png
|
|
|
|
|
integrity: sha384-QL0lDMjIhfcd5uzKEIPehkhx7l0gHWxFo1taNsY2hdDuYdGAadNhiwKueQ91R8KW
|
|
|
|
|
chosen-sprite@2x.png:
|
|
|
|
|
src: https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.2/chosen-sprite%402x.png
|
|
|
|
|
integrity: sha384-MSDzP+ofFO+lRrCZQn3dztHS/GdR8Ai907bxrRZeuGSi87G8XffEKTxxM99GTvr1
|
|
|
|
|
chosen.css:
|
|
|
|
|
src: https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.2/chosen.css
|
|
|
|
|
integrity: sha384-VeNz/jFhcqEG5UB40sPZW8Bg8sdtbtXW1038aqBPAZy/z/6j1XsSQjRUJ7NEM3nE
|
|
|
|
|
chosen.jquery.js:
|
|
|
|
|
src: https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.2/chosen.jquery.js
|
|
|
|
|
integrity: sha384-EzfvMGW4mwDo/InJrmR/UvtxTUUYUA0cfybfS8aqPG1ItoAQYYYDImWl1gaBzMfQ
|
2019-04-04 20:01:16 +00:00
|
|
|
|
2018-10-15 02:27:41 +00:00
|
|
|
jquery.client:
|
|
|
|
|
type: tar
|
2019-02-09 22:42:09 +00:00
|
|
|
src: https://registry.npmjs.org/jquery-client/-/jquery-client-2.0.2.tgz
|
|
|
|
|
integrity: sha256-8c8nBbBykHEMc4I7ksdKJvvw/P7WkaC2X46RTPdz/pw=
|
2018-10-15 02:27:41 +00:00
|
|
|
dest:
|
|
|
|
|
package/AUTHORS.txt:
|
|
|
|
|
package/jquery.client.js:
|
|
|
|
|
package/LICENSE-MIT:
|
|
|
|
|
package/README.md:
|
|
|
|
|
|
2018-09-23 20:50:16 +00:00
|
|
|
jquery.cookie:
|
2018-09-24 17:14:31 +00:00
|
|
|
type: multi-file
|
|
|
|
|
files:
|
|
|
|
|
jquery.cookie.js:
|
|
|
|
|
src: https://raw.githubusercontent.com/carhartl/jquery-cookie/v1.3.1/jquery.cookie.js
|
|
|
|
|
integrity: sha384-Xxq63E9KDgzUJ6WPNPqVeOtRIwZyx6y9DzEwY2u6LYKSnWrjSoGtWSKmTindYBf2
|
|
|
|
|
MIT-LICENSE.txt:
|
|
|
|
|
src: https://raw.githubusercontent.com/carhartl/jquery-cookie/v1.3.1/MIT-LICENSE.txt
|
|
|
|
|
integrity: sha384-zYsGf3KJ7S0AhOICjcoh0kkn7aGZlzYUXXX5xz8dwR9KjLMM+/JPR2g/jVOGGeId
|
|
|
|
|
CHANGELOG.md:
|
|
|
|
|
src: https://raw.githubusercontent.com/carhartl/jquery-cookie/v1.3.1/CHANGELOG.md
|
|
|
|
|
integrity: sha384-SQOHhLc7PHxHDQpGE/zv9XfXKL0A7OBu8kuyVDnHVp+zSoWyRw4xUJ+LSm5ql4kS
|
2018-09-23 20:50:16 +00:00
|
|
|
|
2019-03-20 23:57:38 +00:00
|
|
|
jquery.form:
|
|
|
|
|
type: file
|
|
|
|
|
src: https://raw.githubusercontent.com/jquery-form/form/ff80d9ddf4/jquery.form.js
|
|
|
|
|
integrity: sha384-h4G2CrcSbixzMvrrK259cNBYaL/vS1D4+KdUN9NJDzQnTU1bQ6Avluget+Id13M7
|
|
|
|
|
|
|
|
|
|
jquery.fullscreen:
|
|
|
|
|
type: file
|
|
|
|
|
src: https://raw.githubusercontent.com/theopolisme/jquery-fullscreen/v2.1.0/jquery.fullscreen.js
|
|
|
|
|
integrity: sha384-G4KPs2d99tgcsyUnJ3eeZ1r2hEKDwZfc4+/xowL/LIemq2VVwEE8HpVAWt4WYNLR
|
|
|
|
|
|
|
|
|
|
jquery.hoverIntent:
|
|
|
|
|
type: file
|
|
|
|
|
src: https://raw.githubusercontent.com/briancherne/jquery-hoverIntent/823603fdac/jquery.hoverIntent.js
|
|
|
|
|
integrity: sha384-lca0haN0hqFGGh2aYUhtAgX9dhVHfQnTADH4svDeM6gcXnL7aFGeAi1NYwipDMyS
|
|
|
|
|
|
2019-04-27 05:08:10 +00:00
|
|
|
jquery.i18n:
|
|
|
|
|
type: tar
|
|
|
|
|
src: https://codeload.github.com/wikimedia/jquery.i18n/tar.gz/v1.0.5
|
|
|
|
|
integrity: sha384-bkmmKC2byOVjTg4di3o6sSISU49JwXynV9gNGH2zl4U9nh8vZJiauiIvoWgvhwsK
|
|
|
|
|
dest:
|
|
|
|
|
jquery.i18n-1.0.5/CODE_OF_CONDUCT.md:
|
|
|
|
|
jquery.i18n-1.0.5/CREDITS:
|
|
|
|
|
jquery.i18n-1.0.5/GPL-LICENSE:
|
|
|
|
|
jquery.i18n-1.0.5/MIT-LICENSE:
|
|
|
|
|
jquery.i18n-1.0.5/README.md:
|
|
|
|
|
jquery.i18n-1.0.5/src:
|
2019-04-04 20:01:16 +00:00
|
|
|
|
2019-03-20 23:57:38 +00:00
|
|
|
jquery.jStorage:
|
|
|
|
|
type: file
|
|
|
|
|
src: https://raw.githubusercontent.com/andris9/jStorage/v0.4.12/jstorage.js
|
|
|
|
|
integrity: sha384-geMeN8k803kPp6cqRL4VNfuSM1L8DcbKRk0St/KHJzxgpX9S0y9FA6HxA/JgucrJ
|
|
|
|
|
|
|
|
|
|
jquery.throttle-debounce:
|
|
|
|
|
type: file
|
|
|
|
|
src: https://raw.githubusercontent.com/cowboy/jquery-throttle-debounce/v1.1/jquery.ba-throttle-debounce.js
|
|
|
|
|
integrity: sha384-ULOy4DbAghrCqRcrTJLXOY9e4gDpWh0BeEf6xMSL0VtNudXWggcb6AmrVrl4KDAP
|
|
|
|
|
|
2019-04-04 20:01:16 +00:00
|
|
|
# TODO: jquery.ui (!)
|
|
|
|
|
|
2019-01-23 00:51:45 +00:00
|
|
|
moment:
|
|
|
|
|
type: tar
|
2019-02-22 10:34:40 +00:00
|
|
|
src: https://codeload.github.com/moment/moment/tar.gz/2.24.0
|
|
|
|
|
integrity: sha384-2/I9rfqkN8AAgh5wOXXphuo827uV7lMmOodrCfIvqC6W6JKKiDGOwd+lE3e8R0yz
|
2019-01-23 00:51:45 +00:00
|
|
|
dest:
|
2019-02-22 10:34:40 +00:00
|
|
|
moment-2.24.0/moment.js:
|
|
|
|
|
moment-2.24.0/CHANGELOG.md:
|
|
|
|
|
moment-2.24.0/README.md:
|
|
|
|
|
moment-2.24.0/LICENSE:
|
|
|
|
|
moment-2.24.0/locale/*.js: locale
|
2019-01-23 00:51:45 +00:00
|
|
|
|
2018-09-23 19:13:42 +00:00
|
|
|
mustache:
|
|
|
|
|
type: multi-file
|
|
|
|
|
files:
|
|
|
|
|
mustache.js:
|
2019-04-01 23:04:05 +00:00
|
|
|
src: https://raw.githubusercontent.com/janl/mustache.js/v3.0.1/mustache.js
|
|
|
|
|
integrity: sha384-YjAj6Nll7fkEWzxTlE9o3NWC9qdZt1Upat6Afjib9eLs8lTODpSKEBHeXq8o/VUH
|
2018-09-23 19:13:42 +00:00
|
|
|
LICENSE:
|
2019-04-01 23:04:05 +00:00
|
|
|
src: https://raw.githubusercontent.com/janl/mustache.js/v3.0.1/LICENSE
|
|
|
|
|
integrity: sha384-j2EDj6YtCRgFvYDtzo6pXzbskIj/K1Yg65BL0j3/L6UIHxbMtRMJwC/W+XoYx0FZ
|
2018-09-23 19:13:42 +00:00
|
|
|
|
2018-08-19 05:14:05 +00:00
|
|
|
oojs:
|
2018-08-19 23:02:29 +00:00
|
|
|
type: tar
|
2019-08-28 15:53:23 +00:00
|
|
|
src: https://registry.npmjs.org/oojs/-/oojs-3.0.0.tgz
|
|
|
|
|
integrity: sha256-cNQ5UOHczNGzfEvm6jKM5zcmg3tqFxnJ2UnEOSt9/1M=
|
2018-08-19 05:14:05 +00:00
|
|
|
dest:
|
|
|
|
|
package/dist/oojs.jquery.js:
|
|
|
|
|
package/AUTHORS.txt:
|
|
|
|
|
package/LICENSE-MIT:
|
|
|
|
|
package/README.md:
|
2018-09-10 20:42:14 +00:00
|
|
|
|
2019-02-06 19:52:46 +00:00
|
|
|
oojs-router:
|
|
|
|
|
type: tar
|
2019-02-06 20:22:03 +00:00
|
|
|
src: https://registry.npmjs.org/oojs-router/-/oojs-router-0.2.0.tgz
|
|
|
|
|
integrity: sha384-VngYqdQ3vTDMXbm4e4FUZCCGos7fB0Jkr9V+kBL5MElprK1h0yQZOzBNnMHtSJS/
|
2019-02-06 19:52:46 +00:00
|
|
|
dest:
|
|
|
|
|
package/dist/oojs-router.js:
|
|
|
|
|
package/LICENSE:
|
2019-02-06 20:22:03 +00:00
|
|
|
package/AUTHORS.txt:
|
|
|
|
|
package/History.md:
|
2019-02-06 19:52:46 +00:00
|
|
|
|
2018-09-10 20:42:52 +00:00
|
|
|
ooui:
|
2018-08-19 23:02:29 +00:00
|
|
|
type: tar
|
2019-12-12 00:36:19 +00:00
|
|
|
src: https://registry.npmjs.org/oojs-ui/-/oojs-ui-0.36.1.tgz
|
|
|
|
|
integrity: sha384-F/I84VpPCuBcPJ/MuLm2PqkerCW54u4I95KZAEjMVBXN7yF7Uk0a5djN832dym4M
|
2019-05-29 00:57:59 +00:00
|
|
|
|
2018-08-19 05:14:05 +00:00
|
|
|
dest:
|
|
|
|
|
# Main stuff
|
|
|
|
|
package/dist/oojs-ui-core.js{,.map.json}:
|
|
|
|
|
package/dist/oojs-ui-core-{wikimediaui,apex}.css:
|
|
|
|
|
package/dist/oojs-ui-widgets.js{,.map.json}:
|
|
|
|
|
package/dist/oojs-ui-widgets-{wikimediaui,apex}.css:
|
|
|
|
|
package/dist/oojs-ui-toolbars.js{,.map.json}:
|
|
|
|
|
package/dist/oojs-ui-toolbars-{wikimediaui,apex}.css:
|
|
|
|
|
package/dist/oojs-ui-windows.js{,.map.json}:
|
|
|
|
|
package/dist/oojs-ui-windows-{wikimediaui,apex}.css:
|
|
|
|
|
package/dist/oojs-ui-{wikimediaui,apex}.js{,.map.json}:
|
|
|
|
|
package/dist/i18n:
|
|
|
|
|
package/dist/images:
|
|
|
|
|
# WikimediaUI theme
|
|
|
|
|
package/dist/themes/wikimediaui/images/icons/*.{svg,png}: themes/wikimediaui/images/icons
|
|
|
|
|
package/dist/themes/wikimediaui/images/indicators/*.{svg,png}: themes/wikimediaui/images/indicators
|
2019-03-26 23:19:10 +00:00
|
|
|
package/dist/themes/wikimediaui/*.json: themes/wikimediaui
|
2018-08-19 05:14:05 +00:00
|
|
|
package/dist/wikimedia-ui-base.less:
|
2019-06-05 16:32:46 +00:00
|
|
|
# Apex theme (icons and indicators)
|
2019-03-26 23:19:10 +00:00
|
|
|
package/dist/themes/apex/*.json: themes/apex
|
2018-08-19 05:14:05 +00:00
|
|
|
# Misc stuff
|
|
|
|
|
package/dist/AUTHORS.txt:
|
|
|
|
|
package/dist/History.md:
|
|
|
|
|
package/dist/LICENSE-MIT:
|
|
|
|
|
package/dist/README.md:
|
2018-09-10 20:42:14 +00:00
|
|
|
|
2018-08-25 04:43:43 +00:00
|
|
|
qunitjs:
|
|
|
|
|
type: multi-file
|
2018-08-31 19:32:16 +00:00
|
|
|
# Integrity from link modals at https://code.jquery.com/qunit/
|
2018-08-25 04:43:43 +00:00
|
|
|
files:
|
|
|
|
|
qunit.js:
|
2019-01-08 04:59:44 +00:00
|
|
|
src: http://code.jquery.com/qunit/qunit-2.9.1.js
|
|
|
|
|
integrity: sha256-eNccBdxd8zReziWcVjEsPeyJDi3LKMYnzMXyDv8bzsU=
|
2018-08-25 04:43:43 +00:00
|
|
|
qunit.css:
|
2019-01-08 04:59:44 +00:00
|
|
|
src: https://code.jquery.com/qunit/qunit-2.9.1.css
|
|
|
|
|
integrity: sha256-SSS7o92V7wzcIFg3qnJL9mc4msePaT4klbxtuSGvVVo=
|
2018-09-24 01:39:56 +00:00
|
|
|
|
|
|
|
|
sinonjs:
|
|
|
|
|
type: file
|
2018-09-24 01:47:47 +00:00
|
|
|
src: https://sinonjs.org/releases/sinon-1.17.7.js
|
|
|
|
|
integrity: sha384-wR63Jwy75KqwBfzCmXd6gYws6uj3qV/XMAybzXrkEYGYG3AQ58ZWwr1fVpkHa5e8
|
|
|
|
|
dest: sinon.js
|