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

package.json 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "_from": "underscore@^1.9.2",
  3. "_id": "underscore@1.11.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-xY96SsN3NA461qIRKZ/+qox37YXPtSBswMGfiNptr+wrt6ds4HaMw23TP612fEyGekRE6LNRiLYr/aqbHXNedw==",
  6. "_location": "/cordova-ios/underscore",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "underscore@^1.9.2",
  12. "name": "underscore",
  13. "escapedName": "underscore",
  14. "rawSpec": "^1.9.2",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.9.2"
  17. },
  18. "_requiredBy": [
  19. "/cordova-ios/cordova-common"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/underscore/-/underscore-1.11.0.tgz",
  22. "_shasum": "dd7c23a195db34267186044649870ff1bab5929e",
  23. "_spec": "underscore@^1.9.2",
  24. "_where": "/Users/christian/Documents/artesanias/node_modules/cordova-ios/node_modules/cordova-common",
  25. "author": {
  26. "name": "Jeremy Ashkenas",
  27. "email": "jeremy@documentcloud.org"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/jashkenas/underscore/issues"
  31. },
  32. "bundleDependencies": false,
  33. "deprecated": false,
  34. "description": "JavaScript's functional programming helper library.",
  35. "devDependencies": {
  36. "coveralls": "^2.11.2",
  37. "docco": "^0.8.0",
  38. "eslint": "^6.8.0",
  39. "eslint-plugin-import": "^2.20.1",
  40. "glob": "^7.1.6",
  41. "gzip-size-cli": "^1.0.0",
  42. "husky": "^4.2.3",
  43. "karma": "^0.13.13",
  44. "karma-qunit": "~2.0.1",
  45. "karma-sauce-launcher": "^1.2.0",
  46. "nyc": "^2.1.3",
  47. "pretty-bytes-cli": "^1.0.0",
  48. "qunit": "^2.6.0",
  49. "qunit-cli": "~0.2.0",
  50. "rollup": "^1.32.1",
  51. "terser": "^4.6.13"
  52. },
  53. "files": [
  54. "underscore.js",
  55. "underscore.js.map",
  56. "underscore-min.js",
  57. "underscore-min.js.map",
  58. "underscore-esm.js",
  59. "underscore-esm.js.map",
  60. "underscore-esm-min.js",
  61. "underscore-esm-min.js.map",
  62. "modules/",
  63. "amd/",
  64. "cjs/"
  65. ],
  66. "homepage": "https://underscorejs.org",
  67. "husky": {
  68. "hooks": {
  69. "pre-commit": "npm run bundle && git add underscore.js underscore.js.map underscore-esm.js underscore-esm.js.map",
  70. "post-commit": "git reset underscore.js underscore.js.map underscore-esm.js underscore-esm.js.map"
  71. }
  72. },
  73. "keywords": [
  74. "util",
  75. "functional",
  76. "server",
  77. "client",
  78. "browser"
  79. ],
  80. "license": "MIT",
  81. "main": "underscore.js",
  82. "module": "modules/index-all.js",
  83. "name": "underscore",
  84. "repository": {
  85. "type": "git",
  86. "url": "git://github.com/jashkenas/underscore.git"
  87. },
  88. "scripts": {
  89. "build": "npm run bundle && npm run build-umd && npm run build-esm",
  90. "build-esm": "npm run minify-esm -- --source-map content=underscore-esm.js.map --source-map-url \" \" -o underscore-esm-min.js",
  91. "build-umd": "npm run minify-umd -- --source-map content=underscore.js.map --source-map-url \" \" -o underscore-min.js",
  92. "bundle": "rollup --config && eslint underscore.js",
  93. "bundle-treeshake": "cd test-treeshake && rollup --config",
  94. "coverage": "nyc npm run test-node && nyc report",
  95. "coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls",
  96. "doc": "docco underscore-esm.js && docco modules/*.js -c docco.css -t docs/linked-esm.jst",
  97. "lint": "eslint modules/*.js test/*.js",
  98. "minify-esm": "terser underscore-esm.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
  99. "minify-umd": "terser underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
  100. "prepare-tests": "npm run bundle && npm run bundle-treeshake",
  101. "prepublishOnly": "npm run build && npm run doc",
  102. "test": "npm run lint && npm run test-node",
  103. "test-browser": "npm run prepare-tests && npm i karma-phantomjs-launcher && karma start",
  104. "test-node": "npm run prepare-tests && qunit-cli test/*.js",
  105. "weight": "npm run bundle && npm run minify-umd | gzip-size | pretty-bytes"
  106. },
  107. "version": "1.11.0"
  108. }