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

package.json 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "_from": "uuid@^7.0.3",
  3. "_id": "uuid@7.0.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==",
  6. "_location": "/uuid",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "uuid@^7.0.3",
  12. "name": "uuid",
  13. "escapedName": "uuid",
  14. "rawSpec": "^7.0.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^7.0.3"
  17. },
  18. "_requiredBy": [
  19. "/xcode"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz",
  22. "_shasum": "c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b",
  23. "_spec": "uuid@^7.0.3",
  24. "_where": "/Users/christian/Documents/artesanias/node_modules/xcode",
  25. "bin": {
  26. "uuid": "dist/bin/uuid"
  27. },
  28. "browser": {
  29. "./dist/md5.js": "./dist/md5-browser.js",
  30. "./dist/rng.js": "./dist/rng-browser.js",
  31. "./dist/sha1.js": "./dist/sha1-browser.js",
  32. "./dist/esm-node/index.js": "./dist/esm-browser/index.js"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/uuidjs/uuid/issues"
  36. },
  37. "bundleDependencies": false,
  38. "commitlint": {
  39. "extends": [
  40. "@commitlint/config-conventional"
  41. ]
  42. },
  43. "deprecated": false,
  44. "description": "RFC4122 (v1, v4, and v5) UUIDs",
  45. "devDependencies": {
  46. "@babel/cli": "7.8.4",
  47. "@babel/core": "7.8.7",
  48. "@babel/preset-env": "7.8.7",
  49. "@commitlint/cli": "8.3.5",
  50. "@commitlint/config-conventional": "8.3.4",
  51. "@rollup/plugin-node-resolve": "7.1.1",
  52. "@wdio/browserstack-service": "5.18.7",
  53. "@wdio/cli": "5.18.7",
  54. "@wdio/jasmine-framework": "5.18.6",
  55. "@wdio/local-runner": "5.18.7",
  56. "@wdio/spec-reporter": "5.18.7",
  57. "@wdio/static-server-service": "5.16.10",
  58. "@wdio/sync": "5.18.7",
  59. "babel-eslint": "10.1.0",
  60. "babel-plugin-add-module-exports": "1.0.2",
  61. "bundlewatch": "0.2.6",
  62. "eslint": "6.8.0",
  63. "eslint-config-prettier": "6.10.0",
  64. "eslint-plugin-prettier": "3.1.2",
  65. "husky": "3.0.9",
  66. "jest": "25.1.0",
  67. "lint-staged": "10.0.8",
  68. "npm-run-all": "4.1.5",
  69. "prettier": "1.19.1",
  70. "rollup": "1.32.0",
  71. "rollup-plugin-terser": "5.2.0",
  72. "runmd": "1.3.2",
  73. "standard-version": "7.1.0"
  74. },
  75. "files": [
  76. "CHANGELOG.md",
  77. "CONTRIBUTING.md",
  78. "LICENSE.md",
  79. "README.md",
  80. "deprecate.js",
  81. "dist",
  82. "v1.js",
  83. "v3.js",
  84. "v4.js",
  85. "v5.js"
  86. ],
  87. "homepage": "https://github.com/uuidjs/uuid#readme",
  88. "husky": {
  89. "hooks": {
  90. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
  91. "pre-commit": "lint-staged"
  92. }
  93. },
  94. "keywords": [
  95. "uuid",
  96. "guid",
  97. "rfc4122"
  98. ],
  99. "license": "MIT",
  100. "lint-staged": {
  101. "*.{js,jsx,json,md}": [
  102. "prettier --write"
  103. ],
  104. "*.{js,jsx}": [
  105. "eslint --fix"
  106. ]
  107. },
  108. "main": "dist/index.js",
  109. "module": "dist/esm-node/index.js",
  110. "name": "uuid",
  111. "repository": {
  112. "type": "git",
  113. "url": "git+https://github.com/uuidjs/uuid.git"
  114. },
  115. "scripts": {
  116. "build": "./scripts/build.sh",
  117. "bundlewatch": "( node --version | grep -vq 'v12' ) || ( npm run pretest:browser && bundlewatch --config bundlewatch.config.json )",
  118. "ci": "npm run lint && npm run test && npm run prettier:check && npm run docs:diff && npm run bundlewatch",
  119. "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )",
  120. "docs:diff": "( node --version | grep -vq 'v12' ) || ( npm run docs && git diff --quiet README.md )",
  121. "eslint:check": "eslint src/ test/ examples/ *.js",
  122. "eslint:fix": "eslint --fix src/ test/ examples/ *.js",
  123. "examples:browser-esmodules:build": "cd examples/browser-esmodules && npm install && npm run build",
  124. "examples:browser-rollup:build": "cd examples/browser-rollup && npm install && npm run build",
  125. "examples:browser-webpack:build": "cd examples/browser-webpack && npm install && npm run build",
  126. "lint": "npm run eslint:check && npm run prettier:check",
  127. "md": "runmd --watch --output=README.md README_js.md",
  128. "pretest": "npm run build",
  129. "pretest:browser": "npm run build && npm-run-all --parallel examples:**",
  130. "prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsx,json,md}'",
  131. "prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsx,json,md}'",
  132. "release": "standard-version --no-verify",
  133. "test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/",
  134. "test:browser": "wdio run ./wdio.conf.js"
  135. },
  136. "sideEffects": false,
  137. "standard-version": {
  138. "scripts": {
  139. "postchangelog": "prettier --write CHANGELOG.md",
  140. "postcommit": "npm run build"
  141. }
  142. },
  143. "version": "7.0.3"
  144. }