source: trip-planner-front/node_modules/uuid/package.json@ 59329aa

Last change on this file since 59329aa was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 5.2 KB
Line 
1{
2 "_args": [
3 [
4 "uuid@8.3.2",
5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
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"
24 },
25 "_requiredBy": [
26 "/@angular/cli"
27 ],
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",
31 "bin": {
32 "uuid": "dist/bin/uuid"
33 },
34 "browser": {
35 "./dist/md5.js": "./dist/md5-browser.js",
36 "./dist/rng.js": "./dist/rng-browser.js",
37 "./dist/sha1.js": "./dist/sha1-browser.js",
38 "./dist/esm-node/index.js": "./dist/esm-browser/index.js"
39 },
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",
49 "devDependencies": {
50 "@babel/cli": "7.11.6",
51 "@babel/core": "7.11.6",
52 "@babel/preset-env": "7.11.5",
53 "@commitlint/cli": "11.0.0",
54 "@commitlint/config-conventional": "11.0.0",
55 "@rollup/plugin-node-resolve": "9.0.0",
56 "babel-eslint": "10.1.0",
57 "bundlewatch": "0.3.1",
58 "eslint": "7.10.0",
59 "eslint-config-prettier": "6.12.0",
60 "eslint-config-standard": "14.1.1",
61 "eslint-plugin-import": "2.22.1",
62 "eslint-plugin-node": "11.1.0",
63 "eslint-plugin-prettier": "3.1.4",
64 "eslint-plugin-promise": "4.2.1",
65 "eslint-plugin-standard": "4.0.1",
66 "husky": "4.3.0",
67 "jest": "25.5.4",
68 "lint-staged": "10.4.0",
69 "npm-run-all": "4.1.5",
70 "optional-dev-dependency": "2.0.1",
71 "prettier": "2.1.2",
72 "random-seed": "0.3.0",
73 "rollup": "2.28.2",
74 "rollup-plugin-terser": "7.0.2",
75 "runmd": "1.3.2",
76 "standard-version": "9.0.0"
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",
121 "optionalDevDependencies": {
122 "@wdio/browserstack-service": "6.4.0",
123 "@wdio/cli": "6.4.0",
124 "@wdio/jasmine-framework": "6.4.0",
125 "@wdio/local-runner": "6.4.0",
126 "@wdio/spec-reporter": "6.4.0",
127 "@wdio/static-server-service": "6.4.0",
128 "@wdio/sync": "6.4.0"
129 },
130 "repository": {
131 "type": "git",
132 "url": "git+https://github.com/uuidjs/uuid.git"
133 },
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",
142 "examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build",
143 "examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test",
144 "examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test",
145 "lint": "npm run eslint:check && npm run prettier:check",
146 "md": "runmd --watch --output=README.md README_js.md",
147 "prepack": "npm run build",
148 "pretest": "[ -n $CI ] || npm run build",
149 "pretest:benchmark": "npm run build",
150 "pretest:browser": "optional-dev-dependency && npm run build && npm-run-all --parallel examples:browser:**",
151 "pretest:node": "npm run build",
152 "prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsx,json,md}'",
153 "prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsx,json,md}'",
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"
160 },
161 "sideEffects": false,
162 "standard-version": {
163 "scripts": {
164 "postchangelog": "prettier --write CHANGELOG.md"
165 }
166 },
167 "version": "8.3.2"
168}
Note: See TracBrowser for help on using the repository browser.