Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-07-24 22:55:18 +0300
committerisaacs <i@izs.me>2020-07-29 21:55:03 +0300
commit53ed7e5205a3f4d5d33828ff9dc11c093f482f7b (patch)
treed76317be79432c9527e8fb37d4c13e0719cdbaf9 /node_modules/uuid
parentbbe4279120c94791b70d97f235c73d972fd67354 (diff)
reset deps using npm v7
First self-install!
Diffstat (limited to 'node_modules/uuid')
-rw-r--r--node_modules/uuid/package.json108
1 files changed, 27 insertions, 81 deletions
diff --git a/node_modules/uuid/package.json b/node_modules/uuid/package.json
index 62686689a..efc07b8f6 100644
--- a/node_modules/uuid/package.json
+++ b/node_modules/uuid/package.json
@@ -1,71 +1,21 @@
{
- "_from": "uuid@^3.3.3",
- "_id": "uuid@3.4.0",
- "_inBundle": false,
- "_integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
- "_location": "/uuid",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "uuid@^3.3.3",
- "name": "uuid",
- "escapedName": "uuid",
- "rawSpec": "^3.3.3",
- "saveSpec": null,
- "fetchSpec": "^3.3.3"
- },
- "_requiredBy": [
- "/",
- "/istanbul-lib-processinfo",
- "/nyc",
- "/request"
- ],
- "_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
- "_shasum": "b23e4358afa8a202fe7a100af1f5f883f02007ee",
- "_spec": "uuid@^3.3.3",
- "_where": "/Users/isaacs/dev/npm/cli",
- "bin": {
- "uuid": "bin/uuid"
- },
- "browser": {
- "./lib/rng.js": "./lib/rng-browser.js",
- "./lib/sha1.js": "./lib/sha1-browser.js",
- "./lib/md5.js": "./lib/md5-browser.js"
- },
- "bugs": {
- "url": "https://github.com/uuidjs/uuid/issues"
- },
- "bundleDependencies": false,
+ "name": "uuid",
+ "version": "3.4.0",
+ "description": "RFC4122 (v1, v4, and v5) UUIDs",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
- "contributors": [
- {
- "name": "Robert Kieffer",
- "email": "robert@broofa.com"
- },
- {
- "name": "Christoph Tavan",
- "email": "dev@tavan.de"
- },
- {
- "name": "AJ ONeal",
- "email": "coolaj86@gmail.com"
- },
- {
- "name": "Vincent Voyer",
- "email": "vincent@zeroload.net"
- },
- {
- "name": "Roman Shtylman",
- "email": "shtylman@gmail.com"
- }
+ "keywords": [
+ "uuid",
+ "guid",
+ "rfc4122"
],
- "deprecated": false,
- "description": "RFC4122 (v1, v4, and v5) UUIDs",
+ "license": "MIT",
+ "bin": {
+ "uuid": "./bin/uuid"
+ },
"devDependencies": {
"@commitlint/cli": "~8.2.0",
"@commitlint/config-conventional": "~8.2.0",
@@ -75,29 +25,25 @@
"runmd": "1.2.1",
"standard-version": "7.0.0"
},
- "homepage": "https://github.com/uuidjs/uuid#readme",
- "husky": {
- "hooks": {
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
- }
- },
- "keywords": [
- "uuid",
- "guid",
- "rfc4122"
- ],
- "license": "MIT",
- "name": "uuid",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/uuidjs/uuid.git"
- },
"scripts": {
"lint": "eslint .",
+ "test": "npm run lint && mocha test/test.js",
"md": "runmd --watch --output=README.md README_js.md",
- "prepare": "runmd --output=README.md README_js.md",
"release": "standard-version",
- "test": "npm run lint && mocha test/test.js"
+ "prepare": "runmd --output=README.md README_js.md"
},
- "version": "3.4.0"
+ "browser": {
+ "./lib/rng.js": "./lib/rng-browser.js",
+ "./lib/sha1.js": "./lib/sha1-browser.js",
+ "./lib/md5.js": "./lib/md5-browser.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/uuidjs/uuid.git"
+ },
+ "husky": {
+ "hooks": {
+ "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
+ }
+ }
}