{"maintainers":[{"email":"pieter.vanpoyer@portofantwerp.com","name":"anonymous"},{"email":"norman@nbsolutions.ca","name":"anonymous"},{"email":"chris.brody+brodybits@gmail.com","name":"anonymous"},{"email":"darryl@dpogue.ca","name":"anonymous"},{"email":"apachecordovabot@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"purplecabbage@gmail.com","name":"anonymous"},{"email":"anis.kadri@gmail.com","name":"anonymous"},{"email":"maj.fil@gmail.com","name":"anonymous"},{"email":"bowserj@apache.org","name":"anonymous"},{"email":"shazron@gmail.com","name":"anonymous"},{"email":"pindoria.suraj@gmail.com","name":"anonymous"},{"email":"erisu.dev@outlook.jp","name":"anonymous"},{"email":"NiklasMerz@gmx.net","name":"anonymous"},{"email":"piotrowski+npm@gmail.com","name":"anonymous"},{"email":"csantana23@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"}],"keywords":["cordova","test","ecosystem:cordova"],"dist-tags":{"latest":"1.1.6"},"author":{"name":"Apache Software Foundation"},"description":"Cordova Test Framework Plugin","readme":"<!--\n#\n# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n#  KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\n#\n-->\n\n[![Build Status](https://travis-ci.org/apache/cordova-plugin-test-framework.svg?branch=master)](https://travis-ci.org/apache/cordova-plugin-test-framework)\n\n# Cordova Plugin Test Framework\n\nThe `cordova-plugin-test-framework` plugin does two things:\n\n1. [Defines the interface for cordova plugins to write tests](#interface)\n2. [Provides a test harness for actually running those tests](#harness)\n\nTests run directly inside existing cordova projects, so you can rapidly switch between testing and development.  You can also be sure that your test suite is testing the exact versions of plugins and platforms that your app is using.\n\n# TLDR; Try it\n\n1. Use your existing cordova app, or create a new one.\n2. Plugins bundle their tests using a nested plugin in a `/tests` directory. To make this interesting, add some of these plugins and their respective tests.  Here are a few examples:\n\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git#:/tests\n\t\t\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion.git\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion.git#:/tests\n\t\t\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation#:/tests\n\n3. Follow the docs for [Setting up the test harness](#harness).\n\n\n<a name=\"interface\" />\n\n## Writing Plugin Tests\n\n### Where do tests live?\n\nAdd a directory named `tests` to the root of your plugin. Within this directory, create a nested `plugin.xml` for the tests plugin. It should have a plugin id with the form `plugin-id-tests` (e.g. the `cordova-plugin-device` plugin has the nested id `cordova-plugin-device-tests`) and should contain a `<js-module>` named `tests`. E.g:\n\n```\n<js-module src=\"tests/tests.js\" name=\"tests\">\n</js-module>\n```\n\nFor example, the `cordova-plugin-device` plugin has this nested [`plugin.xml`](https://github.com/apache/cordova-plugin-device/blob/master/tests/plugin.xml).\n\nCreate a `package.json` inside your project's `tests/` folder. Plugins require a `package.json` now and tests are considered their own plugins. The latest version of the tools ensure to run `npm install` on any plugin added to a project and pull in any dependencies. Therefore, plugin authors can now put npm dependencies around their tests into the `package.json` file.\n\nFor example,the `cordova-plugin-device` plugin contains a [`package.json`](https://github.com/apache/cordova-plugin-device/blob/master/tests/package.json).\n\nThe `cordova-plugin-test-framework` plugin will automatically find all `tests` modules across all plugins for which the nested tests plugin is installed.\n\n### Defining Auto Tests\n\nSimply export a function named `defineAutoTests`, which (gasp!) defines your auto-tests when run.  Use the [`jasmine-2.0`](http://jasmine.github.io/2.0/introduction.html) format.  E.g.:\n\n```\nexports.defineAutoTests = function() {\n\n  describe('awesome tests', function() {\n    it('do something sync', function() {\n      expect(1).toBe(1);\n      ...\n    });\n\n    it('do something async', function(done) {\n      setTimeout(function() {\n        expect(1).toBe(1);\n        ...\n        done();\n      }, 100);\n    });\n  });\n\n  describe('more awesome tests', function() {\n    ...\n  });\n\n};\n```\n\nNote: Your tests will automatically be labeled with your plugin id, so do not prefix your test descriptions.\n\n\n### Defining Manual Tests\n\nSimply export a function named `defineManualTests`, which (gasp!) defines your manual-tests when run.  Manual tests do *not* use jasmine-2.0, and success/failure results are not officially reported in any standard way.  Instead, create buttons to run arbitrary javascript when clicked, and display output to user using `console` or by manipulating a provided DOM element. E.g.:\n\n```\nexports.defineManualTests = function(contentEl, createActionButton) {\n\n  createActionButton('Simple Test', function() {\n    console.log(JSON.stringify(foo, null, '\\t'));\n  });\n\n  createActionButton('Complex Test', function() {\n    contentEl.innerHTML = ...;\n  });\n\n};\n```\n\nNote: Your tests will automatically be labeled with your plugin id, so do not prefix your test descriptions.\n\n\n<a name=\"example\">\n\n### Example\n\nSee: [`cordova-plugin-device` tests](https://github.com/apache/cordova-plugin-device/blob/master/tests/tests.js).\n\n<a name=\"harness\" />\n\n## Running Plugin Tests\n\n1. Use your existing cordova app, or create a new one.\n2. Add this plugin:\n\n        cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework.git\n\n3. Change the start page in `config.xml` with `<content src=\"cdvtests/index.html\" />` or navigate to `cdvtests/index.html` from within your app.\n4. Thats it!\n\n\n## FAQ\n\n* Q: Should I add `cordova-plugin-test-framework` as a `<dependency>` of my plugin?\n  * A: No.  The end-user should decide if they want to install the test framework, not your plugin (most users won't).\n\n* Q: What do I do if my plugin tests must have very large assets?\n  * A: Don't bundle those assets with your plugin.  If you can, have your tests fail gracefully if those assets don't don't exist (perhaps log a warning, perhaps fail a single asset-checking test, and skip the rest).  Then, ideally download those assets automatically into local storage the first time tests run.  Or create a manual test step to download and install assets.  As a final alternative, split those test assets into a separate plugin, and instruct users to install that plugin to run your full test suite.\n\n* Q: Should I ship my app with the test framework plugin installed?\n  * A: Not likely.  If you want, you can.  Then your app could even embed a link to the test page (`cdvtests/index.html`) from a help section of your app, to give end users a way to run your test suite out in the feild.  That may help diagnose causes of issues within your app.  Maybe.\n","repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"users":{"xuff10498":true},"license":"Apache-2.0","bugs":{"url":"https://issues.apache.org/jira/browse/CB"},"versions":{"0.0.1":{"name":"cordova-plugin-test-framework","version":"0.0.1","description":"Cordova Test Framework Plugin","cordova":{"id":"org.apache.cordova.test-framework","platforms":[]},"repository":{"type":"git","url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","gitHead":"6aad2946993d7b69b9dcccd8a89c2f744f16627e","_id":"cordova-plugin-test-framework@0.0.1","scripts":{},"_shasum":"50fcfcbb94b356152ac12b3d07d2570be12b462c","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"50fcfcbb94b356152ac12b3d07d2570be12b462c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-0.0.1.tgz","integrity":"sha512-jH37sLrJttemn8thhU/4wq3lQqs+0wYesFpNuCKD/4jCkRxPhG2dQKUaErzq6PO1syAOUerwZqRGg1GIOmtEdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEfapO7p0gnlEqvPtAFnqE0KCDNa4FGqry32nyqs4JGnAiBC3v4zxe2QNLOVEnWwzDobEnZyqaJ00Gq+CnTUeOTVVA=="}]},"directories":{}},"1.0.0":{"name":"cordova-plugin-test-framework","version":"1.0.0","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-test-framework@1.0.0","_shasum":"86269233a92a4a27f73599ff7a4d5094c9fb050d","_resolved":"file:cordova-plugin-test-framework-1.0.0.tgz","_from":"cordova-plugin-test-framework-1.0.0.tgz","scripts":{},"_npmVersion":"2.7.6","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"86269233a92a4a27f73599ff7a4d5094c9fb050d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.0.0.tgz","integrity":"sha512-3ObLVot1g549aBlNZlPwIOTGpL8Vt65YeMw8U1FwELFlbnyYtpOp6vqgVutSaqu81S8pvAGGs1a2c+A7o/yPTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGNJcq0TYLu4pedWHMVxFgzNfOSP49cVxy4CyEvip8HFAiEAwks2Qb+lZOG87qIXdSa/zIP4oOtHDXCe1WP+/mUnDdw="}]},"directories":{}},"1.0.1":{"name":"cordova-plugin-test-framework","version":"1.0.1","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.0.1","_shasum":"cc23f17f7342bb6f1c98feee9482e56447f2162b","_resolved":"file:cordova-plugin-test-framework-1.0.1.tgz","_from":"cordova-plugin-test-framework-1.0.1.tgz","scripts":{},"_npmVersion":"2.9.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"cc23f17f7342bb6f1c98feee9482e56447f2162b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.0.1.tgz","integrity":"sha512-mZu8H2bxfXU/I0RckHe0qtJSxYACgOLgKDOg+HSi5erxvW22kVgDk78SEQjRhMqyRsO50Z+a76JMh92UyP8eAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBm2OsqT6c4/4VE3j7QFjSSAUpjTeMEATXDvHGvit3SwIhAI8lmG1WLz/7avpn7+8qhciyVIlB5MSD31uWwxgi7WIr"}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"directories":{}},"1.1.0":{"name":"cordova-plugin-test-framework","version":"1.1.0","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.0","_shasum":"7848ea6ed27191d074650549b8fc8e125df09aff","_resolved":"file:cordova-plugin-test-framework-1.1.0.tgz","_from":"cordova-plugin-test-framework-1.1.0.tgz","scripts":{},"_npmVersion":"3.3.12","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"7848ea6ed27191d074650549b8fc8e125df09aff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.0.tgz","integrity":"sha512-9P4J1UuCp3HX9O8dIkIYdorOY6DQrC4yOp06CkGiJV7xl8s6nIJ+Vv/vSo6DlYtnfIH1PE0+QXD/yBr3YcRaXQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEO7IYN5z32Cnw/VMkf3xPfxwYEN6gJEn3x6YAZLaDP8AiAqhh73JWVP7ZC41KMRrq1Q67MX34sleLJbg6L3MhqLXA=="}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"directories":{}},"1.1.1":{"name":"cordova-plugin-test-framework","version":"1.1.1","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.1","_shasum":"7b415ecca977df49b231f84bceea537e70c78688","_resolved":"file:cordova-plugin-test-framework-1.1.1.tgz","_from":"cordova-plugin-test-framework-1.1.1.tgz","scripts":{},"_npmVersion":"3.5.1","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"7b415ecca977df49b231f84bceea537e70c78688","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.1.tgz","integrity":"sha512-GWfmmuWvb1ftvbPwaCK/36lMIIGV+nhwOAXk4pZR4iW6xzNwGTcYWWwLHpwPLP6v3fGRctKJBHxP2yENDoTHTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeNE02HNu76Ku582xBkdeG6FDX1VRzdkFpquAS/h28HQIgQiAUZSohFLRjt454Gd8KlI3We4uGAUtuwZEbjhH0ju0="}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"directories":{}},"1.1.2":{"name":"cordova-plugin-test-framework","version":"1.1.2","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"scripts":{"test":"npm run jshint","jshint":"jshint www"},"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","devDependencies":{"jshint":"^2.6.0"},"bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.2","_shasum":"52be224f74af9939f35331daf91a337b8ae3fa15","_resolved":"file:cordova-plugin-test-framework-1.1.2.tgz","_from":"cordova-plugin-test-framework-1.1.2.tgz","_npmVersion":"3.5.3","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"52be224f74af9939f35331daf91a337b8ae3fa15","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.2.tgz","integrity":"sha512-p7Kj8UZ4o3/tUANKAdKtiGKjZZRNGoN8XWRSyeNe6bsnTpywiw5zHV6dDPhDCLvt8RdQWlPa2DDVSjmh6IPbaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvIxiMkY9nqM2ntMgw/WUPH2G3o1RgWLqxCNpiCHoprwIhAKtT1QNxJaJHYoLpnGzcEF2dMsgzPoKJWXm7kSndNx0p"}]},"maintainers":[{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-test-framework-1.1.2.tgz_1461189892671_0.10529554449021816"},"directories":{}},"1.1.3":{"name":"cordova-plugin-test-framework","version":"1.1.3","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"scripts":{"test":"npm run jshint","jshint":"jshint www"},"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","devDependencies":{"jshint":"^2.6.0"},"bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.3","_shasum":"e35847cebd0fd041c0b48b8a5ee30706f3f2df0a","_resolved":"file:cordova-dist-dev/CB-11832/cordova-plugin-test-framework-1.1.3.tgz","_from":"cordova-dist-dev/CB-11832/cordova-plugin-test-framework-1.1.3.tgz","_npmVersion":"3.10.6","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"e35847cebd0fd041c0b48b8a5ee30706f3f2df0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.3.tgz","integrity":"sha512-4HOutri3U1rwdo1wyApkeqp++4ACGFUuCJPxJeCL+53BLskFy/eNwVTcV9qFKOiXNb66RTa1UWx3hsNhPg0E2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDk/9UkFXhHNZocZx/p9EAyqhIoaP2JV1LX1E8N4SAEbwIgMWKyjOxWoEGJCjgqse3qUNaUGosck/mKxx/wEJYKWjQ="}]},"maintainers":[{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-test-framework-1.1.3.tgz_1473901473052_0.42289893282577395"},"directories":{}},"1.1.4":{"name":"cordova-plugin-test-framework","version":"1.1.4","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"scripts":{"test":"npm run jshint","jshint":"jshint www"},"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","devDependencies":{"jshint":"^2.6.0"},"bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.4","_shasum":"b6479ba13dc2ed3d322d4ab9b315762b80e597c5","_resolved":"file:cordova-plugin-test-framework-1.1.4.tgz","_from":"cordova-plugin-test-framework-1.1.4.tgz","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"shazron@gmail.com"},"dist":{"shasum":"b6479ba13dc2ed3d322d4ab9b315762b80e597c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.4.tgz","integrity":"sha512-ZwJnfVu/8AkERfGB8qk6pcULAutkBb/zcYZYGg5VuDM8VXBSc/vYu+uji+bCFx0HJHpDoquXAaIGKVmrEJEKMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCDO7WJIaJ5377upNtxCoYlMl5cOBTSBI7d7v0NE3odRQIgB64wtOslzz2fGCLOk5S/Kfoka2zWyAWoE6y5DexwvJY="}]},"maintainers":[{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-test-framework-1.1.4.tgz_1481567788956_0.6757395272143185"},"directories":{}},"1.1.5":{"name":"cordova-plugin-test-framework","version":"1.1.5","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"keywords":["cordova","test","ecosystem:cordova"],"scripts":{"test":"npm run jshint","jshint":"jshint www"},"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","devDependencies":{"jshint":"^2.6.0"},"bugs":{"url":"https://github.com/apache/cordova-plugin-test-framework/issues"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.5","_shasum":"b2b60711f5037da0dfcb403fb1ff70c0074f53ca","_resolved":"file:cordova-dist/plugins/cordova-plugin-test-framework-1.1.5.tgz","_from":"cordova-dist/plugins/cordova-plugin-test-framework-1.1.5.tgz","_npmVersion":"4.1.1","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"b2b60711f5037da0dfcb403fb1ff70c0074f53ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.5.tgz","integrity":"sha512-FPptiXf/rZNe9WcUGdLh2CP1t8vkGvtISBEz4Z3FP+CdN+i1st3vbbIa9cWYF8M6An+/B87HyKmkhrv65WIcRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG5DnJEn/SotcNC6Bkwy8BYXzQqWUrvsqrgyfSYMMBZ7AiEAx54SLD6U+1d+he1/UWDNblW88WHVDcxXgB1iokgjGUg="}]},"maintainers":[{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-test-framework-1.1.5.tgz_1488934537144_0.11722942255437374"},"directories":{}},"1.1.6":{"name":"cordova-plugin-test-framework","version":"1.1.6","description":"Cordova Test Framework Plugin","cordova":{"id":"cordova-plugin-test-framework","platforms":[]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-test-framework.git"},"bugs":{"url":"https://issues.apache.org/jira/browse/CB"},"keywords":["cordova","test","ecosystem:cordova"],"scripts":{"test":"npm run eslint","eslint":"eslint www"},"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","devDependencies":{"eslint":"^4.2.0","eslint-config-semistandard":"^11.0.0","eslint-config-standard":"^10.2.1","eslint-plugin-import":"^2.7.0","eslint-plugin-node":"^5.1.1","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1"},"homepage":"https://github.com/apache/cordova-plugin-test-framework#readme","_id":"cordova-plugin-test-framework@1.1.6","_shasum":"b099ab469ae9a3259261c7bce72d64b14e419124","_resolved":"file:cordova-plugin-test-framework-1.1.6.tgz","_from":"cordova-plugin-test-framework-1.1.6.tgz","_npmVersion":"4.6.1","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"b099ab469ae9a3259261c7bce72d64b14e419124","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-test-framework/-/cordova-plugin-test-framework-1.1.6.tgz","integrity":"sha512-acnKvWhAhzqcdxvitskpPp6WBafvARmJpzAtK1TE/oYdmefVRG5oCeg14rH3iHJjeBlAPBZmdaJZnyK4dfASqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGpVYU78Zk407/80KymWnc9V4lv93KgmFEHElnd/kFYgIgR7OVNH/DTcpH3SA+m78tH+LkAUn/2f+P7Q4tkcrRakc="}]},"maintainers":[{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-test-framework-1.1.6.tgz_1510361686524_0.8819359147455543"},"directories":{}}},"name":"cordova-plugin-test-framework","time":{"modified":"2022-06-14T00:53:51.288Z","created":"2015-02-25T08:59:14.020Z","0.0.1":"2015-02-25T08:59:14.020Z","1.0.0":"2015-04-21T22:30:53.868Z","1.0.1":"2015-06-22T23:08:50.789Z","1.1.0":"2015-11-24T23:35:31.983Z","1.1.1":"2016-01-20T01:28:04.507Z","1.1.2":"2016-04-20T22:04:53.101Z","1.1.3":"2016-09-15T01:04:33.320Z","1.1.4":"2016-12-12T18:36:29.206Z","1.1.5":"2017-03-08T00:55:38.427Z","1.1.6":"2017-11-11T00:54:47.044Z"},"readmeFilename":"README.md","homepage":"https://github.com/apache/cordova-plugin-test-framework#readme"}