Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

package.json 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "_from": "cordova-android@^8.0.0",
  3. "_id": "cordova-android@8.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-eAY6g9q3raJ4P03wNdSWC5MOW1EfxoomWNXsPhi7T6Q9yAqmxqn0sLEUjLL1Ib0LCH3nKQWBXdxapQ5LgbHu+g==",
  6. "_location": "/cordova-android",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "escapedName": "cordova-android",
  10. "fetchSpec": "^8.0.0",
  11. "name": "cordova-android",
  12. "raw": "cordova-android@^8.0.0",
  13. "rawSpec": "^8.0.0",
  14. "registry": true,
  15. "saveSpec": null,
  16. "type": "range"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/cordova-android/-/cordova-android-8.1.0.tgz",
  23. "_shasum": "d9aea62bbe4a4c8d22fdf21616869439cd1c95a0",
  24. "_spec": "cordova-android@^8.0.0",
  25. "_where": "C:\\Users\\Chuch\\Documents\\Cordova\\artesanias",
  26. "author": {
  27. "name": "Apache Software Foundation"
  28. },
  29. "bin": {
  30. "create": "bin/create"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/apache/cordova-android/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "android-versions": "^1.4.0",
  38. "compare-func": "^1.3.2",
  39. "cordova-common": "^3.2.0",
  40. "nopt": "^4.0.1",
  41. "properties-parser": "^0.3.1",
  42. "q": "^1.5.1",
  43. "shelljs": "^0.5.3"
  44. },
  45. "deprecated": false,
  46. "description": "cordova-android release",
  47. "devDependencies": {
  48. "eslint": "^5.12.0",
  49. "eslint-config-semistandard": "^13.0.0",
  50. "eslint-config-standard": "^12.0.0",
  51. "eslint-plugin-import": "^2.14.0",
  52. "eslint-plugin-node": "^8.0.1",
  53. "eslint-plugin-promise": "^4.0.1",
  54. "eslint-plugin-standard": "^4.0.0",
  55. "jasmine": "^3.3.1",
  56. "jasmine-spec-reporter": "^4.2.1",
  57. "nyc": "^14.1.1",
  58. "rewire": "^4.0.1"
  59. },
  60. "engineStrict": true,
  61. "engines": {
  62. "node": ">=6.0.0"
  63. },
  64. "homepage": "https://github.com/apache/cordova-android#readme",
  65. "keywords": [
  66. "android",
  67. "apache",
  68. "cordova"
  69. ],
  70. "license": "Apache-2.0",
  71. "main": "bin/templates/cordova/Api.js",
  72. "name": "cordova-android",
  73. "nyc": {
  74. "include": [
  75. "bin/lib/**",
  76. "bin/templates/cordova/**"
  77. ],
  78. "reporter": [
  79. "lcov",
  80. "text"
  81. ]
  82. },
  83. "optionalDependencies": {},
  84. "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://ci.appveyor.com/api/projects/status/github/apache/cordova-android?branch=master)](https://ci.appveyor.com/project/Humbedooh/cordova-android)\n[![Build Status](https://travis-ci.org/apache/cordova-android.svg?branch=master)](https://travis-ci.org/apache/cordova-android)\n[![codecov.io](https://codecov.io/github/apache/cordova-android/coverage.svg?branch=master)](https://codecov.io/github/apache/cordova-android?branch=master)\n\n# Cordova Android\n\nCordova Android is an Android application library that allows for Cordova-based\nprojects to be built for the Android Platform. Cordova based applications are,\nat the core, applications written with web technology: HTML, CSS and JavaScript.\n\n[Apache Cordova](https://cordova.apache.org) is a project of The Apache Software Foundation (ASF).\n\n## Requires\n\n- Java JDK 1.8 or greater\n- Android SDK [http://developer.android.com](http://developer.android.com)\n\n\n## Cordova Android Developer Tools\n\nWe recommend using the [Cordova command-line tool](https://www.npmjs.com/package/cordova) to create projects and be able to easily install plugins.\n\nHowever, the following scripts can be used instead:\n\n ./bin/create [path package activity] ... creates the ./example app or a cordova android project\n ./bin/check_reqs ....................... checks that your environment is set up for cordova-android development\n ./bin/update [path] .................... updates an existing cordova-android project to the version of the framework\n\nThese commands live in a generated Cordova Android project. Any interactions with the emulator require you to have an AVD defined.\n\n ./cordova/clean ........................ cleans the project\n ./cordova/build ........................ calls `clean` then compiles the project\n ./cordova/log ........................ streams device or emulator logs to STDOUT\n ./cordova/run ........................ calls `build` then deploys to a connected Android device. If no Android device is detected, will launch an emulator and deploy to it.\n ./cordova/version ...................... returns the cordova-android version of the current project\n\n## Using Android Studio\n\n1. Create a project\n2. Import it via \"Non-Android Studio Project\"\n\n## Running the Native Tests\n\nThe `test/` directory in this project contains an Android test project that can\nbe used to run different kinds of native tests. Check out the\n[README contained therein](test/README.md) for more details!\n",
  85. "readmeFilename": "README.md",
  86. "repository": {
  87. "type": "git",
  88. "url": "git+https://github.com/apache/cordova-android.git"
  89. },
  90. "scripts": {
  91. "cover": "nyc jasmine --config=spec/coverage.json",
  92. "e2e-tests": "jasmine --config=spec/e2e/jasmine.json",
  93. "eslint": "eslint bin spec test",
  94. "java-unit-tests": "node test/run_java_unit_tests.js",
  95. "test": "npm run eslint && npm run cover && npm run java-unit-tests",
  96. "unit-tests": "jasmine --config=spec/unit/jasmine.json"
  97. },
  98. "version": "8.1.0"
  99. }