Changeset 59329aa for trip-planner-front/node_modules/uuid/package.json
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/uuid/package.json
rceaed42 r59329aa 1 1 { 2 "name": "uuid", 3 "version": "8.3.2", 4 "description": "RFC4122 (v1, v4, and v5) UUIDs", 5 "commitlint": { 6 "extends": [ 7 "@commitlint/config-conventional" 2 "_args": [ 3 [ 4 "uuid@8.3.2", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 8 6 ] 7 ], 8 "_development": true, 9 "_from": "uuid@8.3.2", 10 "_id": "uuid@8.3.2", 11 "_inBundle": false, 12 "_integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", 13 "_location": "/uuid", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "uuid@8.3.2", 19 "name": "uuid", 20 "escapedName": "uuid", 21 "rawSpec": "8.3.2", 22 "saveSpec": null, 23 "fetchSpec": "8.3.2" 9 24 }, 10 "keywords": [ 11 "uuid", 12 "guid", 13 "rfc4122" 25 "_requiredBy": [ 26 "/@angular/cli" 14 27 ], 15 "license": "MIT", 28 "_resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 29 "_spec": "8.3.2", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 16 31 "bin": { 17 "uuid": " ./dist/bin/uuid"32 "uuid": "dist/bin/uuid" 18 33 }, 19 "sideEffects": false,20 "main": "./dist/index.js",21 "exports": {22 ".": {23 "node": {24 "module": "./dist/esm-node/index.js",25 "require": "./dist/index.js",26 "import": "./wrapper.mjs"27 },28 "default": "./dist/esm-browser/index.js"29 },30 "./package.json": "./package.json"31 },32 "module": "./dist/esm-node/index.js",33 34 "browser": { 34 35 "./dist/md5.js": "./dist/md5-browser.js", … … 37 38 "./dist/esm-node/index.js": "./dist/esm-browser/index.js" 38 39 }, 39 "files": [ 40 "CHANGELOG.md", 41 "CONTRIBUTING.md", 42 "LICENSE.md", 43 "README.md", 44 "dist", 45 "wrapper.mjs" 46 ], 40 "bugs": { 41 "url": "https://github.com/uuidjs/uuid/issues" 42 }, 43 "commitlint": { 44 "extends": [ 45 "@commitlint/config-conventional" 46 ] 47 }, 48 "description": "RFC4122 (v1, v4, and v5) UUIDs", 47 49 "devDependencies": { 48 50 "@babel/cli": "7.11.6", … … 74 76 "standard-version": "9.0.0" 75 77 }, 78 "exports": { 79 ".": { 80 "node": { 81 "module": "./dist/esm-node/index.js", 82 "require": "./dist/index.js", 83 "import": "./wrapper.mjs" 84 }, 85 "default": "./dist/esm-browser/index.js" 86 }, 87 "./package.json": "./package.json" 88 }, 89 "files": [ 90 "CHANGELOG.md", 91 "CONTRIBUTING.md", 92 "LICENSE.md", 93 "README.md", 94 "dist", 95 "wrapper.mjs" 96 ], 97 "homepage": "https://github.com/uuidjs/uuid#readme", 98 "husky": { 99 "hooks": { 100 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", 101 "pre-commit": "lint-staged" 102 } 103 }, 104 "keywords": [ 105 "uuid", 106 "guid", 107 "rfc4122" 108 ], 109 "license": "MIT", 110 "lint-staged": { 111 "*.{js,jsx,json,md}": [ 112 "prettier --write" 113 ], 114 "*.{js,jsx}": [ 115 "eslint --fix" 116 ] 117 }, 118 "main": "./dist/index.js", 119 "module": "./dist/esm-node/index.js", 120 "name": "uuid", 76 121 "optionalDevDependencies": { 77 122 "@wdio/browserstack-service": "6.4.0", … … 83 128 "@wdio/sync": "6.4.0" 84 129 }, 130 "repository": { 131 "type": "git", 132 "url": "git+https://github.com/uuidjs/uuid.git" 133 }, 85 134 "scripts": { 135 "build": "./scripts/build.sh", 136 "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json", 137 "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )", 138 "docs:diff": "npm run docs && git diff --quiet README.md", 139 "eslint:check": "eslint src/ test/ examples/ *.js", 140 "eslint:fix": "eslint --fix src/ test/ examples/ *.js", 141 "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build", 86 142 "examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build", 87 "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build",88 143 "examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test", 89 144 "examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test", 90 145 "lint": "npm run eslint:check && npm run prettier:check", 91 " eslint:check": "eslint src/ test/ examples/ *.js",92 " eslint:fix": "eslint --fix src/ test/ examples/ *.js",146 "md": "runmd --watch --output=README.md README_js.md", 147 "prepack": "npm run build", 93 148 "pretest": "[ -n $CI ] || npm run build", 94 " test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/",149 "pretest:benchmark": "npm run build", 95 150 "pretest:browser": "optional-dev-dependency && npm run build && npm-run-all --parallel examples:browser:**", 96 "test:browser": "wdio run ./wdio.conf.js",97 151 "pretest:node": "npm run build", 98 "test:node": "npm-run-all --parallel examples:node:**",99 "test:pack": "./scripts/testpack.sh",100 "pretest:benchmark": "npm run build",101 "test:benchmark": "cd examples/benchmark && npm install && npm test",102 152 "prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsx,json,md}'", 103 153 "prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsx,json,md}'", 104 "bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json", 105 "md": "runmd --watch --output=README.md README_js.md", 106 "docs": "( node --version | grep -q 'v12' ) && ( npm run build && runmd --output=README.md README_js.md )", 107 "docs:diff": "npm run docs && git diff --quiet README.md", 108 "build": "./scripts/build.sh", 109 "prepack": "npm run build", 110 "release": "standard-version --no-verify" 154 "release": "standard-version --no-verify", 155 "test": "BABEL_ENV=commonjs node --throw-deprecation node_modules/.bin/jest test/unit/", 156 "test:benchmark": "cd examples/benchmark && npm install && npm test", 157 "test:browser": "wdio run ./wdio.conf.js", 158 "test:node": "npm-run-all --parallel examples:node:**", 159 "test:pack": "./scripts/testpack.sh" 111 160 }, 112 "repository": { 113 "type": "git", 114 "url": "https://github.com/uuidjs/uuid.git" 115 }, 116 "husky": { 117 "hooks": { 118 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", 119 "pre-commit": "lint-staged" 120 } 121 }, 122 "lint-staged": { 123 "*.{js,jsx,json,md}": [ 124 "prettier --write" 125 ], 126 "*.{js,jsx}": [ 127 "eslint --fix" 128 ] 129 }, 161 "sideEffects": false, 130 162 "standard-version": { 131 163 "scripts": { 132 164 "postchangelog": "prettier --write CHANGELOG.md" 133 165 } 134 } 166 }, 167 "version": "8.3.2" 135 168 }
Note:
See TracChangeset
for help on using the changeset viewer.