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

package.json 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "_from": "ajv@^6.12.3",
  3. "_id": "ajv@6.12.6",
  4. "_inBundle": false,
  5. "_integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^6.12.3",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^6.12.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.12.3"
  17. },
  18. "_requiredBy": [
  19. "/har-validator"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
  22. "_shasum": "baf5a62e802b07d977034586f8c3baf5adf26df4",
  23. "_spec": "ajv@^6.12.3",
  24. "_where": "/home/christian/Documents/newarte/artesanias/node_modules/har-validator",
  25. "author": {
  26. "name": "Evgeny Poberezkin"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/ajv-validator/ajv/issues"
  30. },
  31. "bundleDependencies": false,
  32. "collective": {
  33. "type": "opencollective",
  34. "url": "https://opencollective.com/ajv"
  35. },
  36. "dependencies": {
  37. "fast-deep-equal": "^3.1.1",
  38. "fast-json-stable-stringify": "^2.0.0",
  39. "json-schema-traverse": "^0.4.1",
  40. "uri-js": "^4.2.2"
  41. },
  42. "deprecated": false,
  43. "description": "Another JSON Schema Validator",
  44. "devDependencies": {
  45. "ajv-async": "^1.0.0",
  46. "bluebird": "^3.5.3",
  47. "brfs": "^2.0.0",
  48. "browserify": "^16.2.0",
  49. "chai": "^4.0.1",
  50. "coveralls": "^3.0.1",
  51. "del-cli": "^3.0.0",
  52. "dot": "^1.0.3",
  53. "eslint": "^7.3.1",
  54. "gh-pages-generator": "^0.2.3",
  55. "glob": "^7.0.0",
  56. "if-node-version": "^1.0.0",
  57. "js-beautify": "^1.7.3",
  58. "jshint": "^2.10.2",
  59. "json-schema-test": "^2.0.0",
  60. "karma": "^5.0.0",
  61. "karma-chrome-launcher": "^3.0.0",
  62. "karma-mocha": "^2.0.0",
  63. "karma-sauce-launcher": "^4.1.3",
  64. "mocha": "^8.0.1",
  65. "nyc": "^15.0.0",
  66. "pre-commit": "^1.1.1",
  67. "require-globify": "^1.3.0",
  68. "typescript": "^3.9.5",
  69. "uglify-js": "^3.6.9",
  70. "watch": "^1.0.0"
  71. },
  72. "files": [
  73. "lib/",
  74. "dist/",
  75. "scripts/",
  76. "LICENSE",
  77. ".tonic_example.js"
  78. ],
  79. "funding": {
  80. "type": "github",
  81. "url": "https://github.com/sponsors/epoberezkin"
  82. },
  83. "homepage": "https://github.com/ajv-validator/ajv",
  84. "keywords": [
  85. "JSON",
  86. "schema",
  87. "validator",
  88. "validation",
  89. "jsonschema",
  90. "json-schema",
  91. "json-schema-validator",
  92. "json-schema-validation"
  93. ],
  94. "license": "MIT",
  95. "main": "lib/ajv.js",
  96. "name": "ajv",
  97. "nyc": {
  98. "exclude": [
  99. "**/spec/**",
  100. "node_modules"
  101. ],
  102. "reporter": [
  103. "lcov",
  104. "text-summary"
  105. ]
  106. },
  107. "repository": {
  108. "type": "git",
  109. "url": "git+https://github.com/ajv-validator/ajv.git"
  110. },
  111. "scripts": {
  112. "build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",
  113. "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
  114. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  115. "eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
  116. "jshint": "jshint lib/{compile/,}*.js",
  117. "lint": "npm run jshint && npm run eslint",
  118. "prepublish": "npm run build && npm run bundle",
  119. "test": "npm run lint && npm run build && npm run test-all",
  120. "test-all": "npm run test-cov && if-node-version 10 npm run test-browser",
  121. "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
  122. "test-cov": "nyc npm run test-spec",
  123. "test-debug": "npm run test-spec -- --inspect-brk",
  124. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  125. "test-karma": "karma start",
  126. "test-spec": "mocha spec/{**/,}*.spec.js -R spec",
  127. "test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
  128. "watch": "watch \"npm run build\" ./lib/dot"
  129. },
  130. "tonicExampleFilename": ".tonic_example.js",
  131. "typings": "lib/ajv.d.ts",
  132. "version": "6.12.6"
  133. }