package.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. {
  2. "_from": "uuid@8.0.0",
  3. "_id": "uuid@8.0.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==",
  6. "_location": "/uuid",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "uuid@8.0.0",
  12. "name": "uuid",
  13. "escapedName": "uuid",
  14. "rawSpec": "8.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "8.0.0"
  17. },
  18. "_requiredBy": [
  19. "/aws-sdk"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz",
  22. "_shasum": "bc6ccf91b5ff0ac07bbcdbf1c7c4e150db4dbb6c",
  23. "_spec": "uuid@8.0.0",
  24. "_where": "/Users/ben/Desktop/app/be/be-ytb/js/node_modules/aws-sdk",
  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.9.0",
  48. "@babel/preset-env": "7.9.5",
  49. "@commitlint/cli": "8.3.5",
  50. "@commitlint/config-conventional": "8.3.4",
  51. "@rollup/plugin-node-resolve": "7.1.3",
  52. "@wdio/browserstack-service": "6.0.12",
  53. "@wdio/cli": "6.0.15",
  54. "@wdio/jasmine-framework": "6.0.15",
  55. "@wdio/local-runner": "6.0.15",
  56. "@wdio/spec-reporter": "6.0.14",
  57. "@wdio/static-server-service": "6.0.13",
  58. "@wdio/sync": "6.0.15",
  59. "babel-eslint": "10.1.0",
  60. "bundlewatch": "0.2.6",
  61. "eslint": "6.8.0",
  62. "eslint-config-prettier": "6.10.1",
  63. "eslint-plugin-prettier": "3.1.3",
  64. "husky": "4.2.5",
  65. "jest": "25.3.0",
  66. "lint-staged": "10.1.3",
  67. "npm-run-all": "4.1.5",
  68. "prettier": "2.0.4",
  69. "rollup": "2.6.1",
  70. "rollup-plugin-terser": "5.3.0",
  71. "runmd": "1.3.2",
  72. "standard-version": "7.1.0"
  73. },
  74. "exports": {
  75. "require": "./dist/index.js",
  76. "import": "./wrapper.mjs"
  77. },
  78. "files": [
  79. "CHANGELOG.md",
  80. "CONTRIBUTING.md",
  81. "LICENSE.md",
  82. "README.md",
  83. "dist",
  84. "wrapper.mjs"
  85. ],
  86. "homepage": "https://github.com/uuidjs/uuid#readme",
  87. "husky": {
  88. "hooks": {
  89. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
  90. "pre-commit": "lint-staged"
  91. }
  92. },
  93. "keywords": [
  94. "uuid",
  95. "guid",
  96. "rfc4122"
  97. ],
  98. "license": "MIT",
  99. "lint-staged": {
  100. "*.{js,jsx,json,md}": [
  101. "prettier --write"
  102. ],
  103. "*.{js,jsx}": [
  104. "eslint --fix"
  105. ]
  106. },
  107. "main": "./dist/index.js",
  108. "module": "./dist/esm-node/index.js",
  109. "name": "uuid",
  110. "repository": {
  111. "type": "git",
  112. "url": "git+https://github.com/uuidjs/uuid.git"
  113. },
  114. "scripts": {
  115. "build": "./scripts/build.sh",
  116. "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
  117. "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )",
  118. "docs:diff": "npm run docs && git diff --quiet README.md",
  119. "eslint:check": "eslint src/ test/ examples/ *.js",
  120. "eslint:fix": "eslint --fix src/ test/ examples/ *.js",
  121. "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build",
  122. "examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build",
  123. "examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test",
  124. "examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test",
  125. "lint": "npm run eslint:check && npm run prettier:check",
  126. "md": "runmd --watch --output=README.md README_js.md",
  127. "prepack": "npm run build",
  128. "pretest": "[ -n $CI ] || npm run build",
  129. "pretest:browser": "npm run build && npm-run-all --parallel examples:browser:**",
  130. "pretest:node": "npm run build",
  131. "prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsx,json,md}'",
  132. "prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsx,json,md}'",
  133. "release": "standard-version --no-verify",
  134. "test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/",
  135. "test:browser": "wdio run ./wdio.conf.js",
  136. "test:node": "npm-run-all --parallel examples:node:**",
  137. "test:pack": "./scripts/testpack.sh"
  138. },
  139. "sideEffects": false,
  140. "standard-version": {
  141. "scripts": {
  142. "postchangelog": "prettier --write CHANGELOG.md"
  143. }
  144. },
  145. "version": "8.0.0"
  146. }