package.json 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. {
  2. "_from": "uuid@^8.1.0",
  3. "_id": "uuid@8.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-CYpGiFTUrmI6OBMkAdjSDM0k5h8SkkiTP4WAjQgDgNB1S3Ou9VBEvr6q0Kv2H1mMk7IWfxYGpMH5sd5AvcIV2Q==",
  6. "_location": "/uuid",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "uuid@^8.1.0",
  12. "name": "uuid",
  13. "escapedName": "uuid",
  14. "rawSpec": "^8.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^8.1.0"
  17. },
  18. "_requiredBy": [
  19. "/sequelize"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/uuid/-/uuid-8.2.0.tgz",
  22. "_shasum": "cb10dd6b118e2dada7d0cd9730ba7417c93d920e",
  23. "_spec": "uuid@^8.1.0",
  24. "_where": "E:\\a-level\\project_js2\\node_modules\\sequelize",
  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.10.3",
  47. "@babel/core": "7.10.3",
  48. "@babel/preset-env": "7.10.3",
  49. "@commitlint/cli": "9.0.1",
  50. "@commitlint/config-conventional": "9.0.1",
  51. "@rollup/plugin-node-resolve": "8.0.1",
  52. "@wdio/browserstack-service": "6.1.15",
  53. "@wdio/cli": "6.1.20",
  54. "@wdio/jasmine-framework": "6.1.17",
  55. "@wdio/local-runner": "6.1.20",
  56. "@wdio/spec-reporter": "6.1.14",
  57. "@wdio/static-server-service": "6.1.14",
  58. "@wdio/sync": "6.1.14",
  59. "babel-eslint": "10.1.0",
  60. "bundlewatch": "0.2.7",
  61. "eslint": "7.3.0",
  62. "eslint-config-prettier": "6.11.0",
  63. "eslint-config-standard": "14.1.1",
  64. "eslint-plugin-import": "2.21.2",
  65. "eslint-plugin-node": "11.1.0",
  66. "eslint-plugin-prettier": "3.1.4",
  67. "eslint-plugin-promise": "4.2.1",
  68. "eslint-plugin-standard": "4.0.1",
  69. "husky": "4.2.5",
  70. "jest": "25.5.4",
  71. "lint-staged": "10.2.11",
  72. "npm-run-all": "4.1.5",
  73. "prettier": "2.0.5",
  74. "rollup": "2.18.0",
  75. "rollup-plugin-terser": "6.1.0",
  76. "runmd": "1.3.2",
  77. "standard-version": "8.0.0"
  78. },
  79. "exports": {
  80. ".": {
  81. "node": {
  82. "module": "./dist/esm-node/index.js",
  83. "require": "./dist/index.js",
  84. "import": "./wrapper.mjs"
  85. },
  86. "default": "./dist/esm-browser/index.js"
  87. },
  88. "./package.json": "./package.json"
  89. },
  90. "files": [
  91. "CHANGELOG.md",
  92. "CONTRIBUTING.md",
  93. "LICENSE.md",
  94. "README.md",
  95. "dist",
  96. "wrapper.mjs"
  97. ],
  98. "homepage": "https://github.com/uuidjs/uuid#readme",
  99. "husky": {
  100. "hooks": {
  101. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
  102. "pre-commit": "lint-staged"
  103. }
  104. },
  105. "keywords": [
  106. "uuid",
  107. "guid",
  108. "rfc4122"
  109. ],
  110. "license": "MIT",
  111. "lint-staged": {
  112. "*.{js,jsx,json,md}": [
  113. "prettier --write"
  114. ],
  115. "*.{js,jsx}": [
  116. "eslint --fix"
  117. ]
  118. },
  119. "main": "./dist/index.js",
  120. "module": "./dist/esm-node/index.js",
  121. "name": "uuid",
  122. "repository": {
  123. "type": "git",
  124. "url": "git+https://github.com/uuidjs/uuid.git"
  125. },
  126. "scripts": {
  127. "build": "./scripts/build.sh",
  128. "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
  129. "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )",
  130. "docs:diff": "npm run docs && git diff --quiet README.md",
  131. "eslint:check": "eslint src/ test/ examples/ *.js",
  132. "eslint:fix": "eslint --fix src/ test/ examples/ *.js",
  133. "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build",
  134. "examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build",
  135. "examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test",
  136. "examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test",
  137. "lint": "npm run eslint:check && npm run prettier:check",
  138. "md": "runmd --watch --output=README.md README_js.md",
  139. "prepack": "npm run build",
  140. "pretest": "[ -n $CI ] || npm run build",
  141. "pretest:benchmark": "npm run build",
  142. "pretest:browser": "npm run build && npm-run-all --parallel examples:browser:**",
  143. "pretest:node": "npm run build",
  144. "prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsx,json,md}'",
  145. "prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsx,json,md}'",
  146. "release": "standard-version --no-verify",
  147. "test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/",
  148. "test:benchmark": "cd examples/benchmark && npm install && npm test",
  149. "test:browser": "wdio run ./wdio.conf.js",
  150. "test:node": "npm-run-all --parallel examples:node:**",
  151. "test:pack": "./scripts/testpack.sh"
  152. },
  153. "sideEffects": false,
  154. "standard-version": {
  155. "scripts": {
  156. "postchangelog": "prettier --write CHANGELOG.md"
  157. }
  158. },
  159. "version": "8.2.0"
  160. }