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:
Diffstat (limited to 'node_modules/lockfile/package.json')
-rw-r--r--node_modules/lockfile/package.json63
1 files changed, 15 insertions, 48 deletions
diff --git a/node_modules/lockfile/package.json b/node_modules/lockfile/package.json
index adbd02b43..625e91bcc 100644
--- a/node_modules/lockfile/package.json
+++ b/node_modules/lockfile/package.json
@@ -1,49 +1,26 @@
{
- "_from": "lockfile@^1.0.4",
- "_id": "lockfile@1.0.4",
- "_inBundle": false,
- "_integrity": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==",
- "_location": "/lockfile",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "lockfile@^1.0.4",
- "name": "lockfile",
- "escapedName": "lockfile",
- "rawSpec": "^1.0.4",
- "saveSpec": null,
- "fetchSpec": "^1.0.4"
- },
- "_requiredBy": [
- "/"
- ],
- "_resolved": "https://registry.npmjs.org/lockfile/-/lockfile-1.0.4.tgz",
- "_shasum": "07f819d25ae48f87e538e6578b6964a4981a5609",
- "_spec": "lockfile@^1.0.4",
- "_where": "/Users/isaacs/dev/npm/cli",
- "author": {
- "name": "Isaac Z. Schlueter",
- "email": "i@izs.me",
- "url": "http://blog.izs.me/"
- },
- "bugs": {
- "url": "https://github.com/npm/lockfile/issues"
+ "name": "lockfile",
+ "version": "1.0.4",
+ "main": "lockfile.js",
+ "directories": {
+ "test": "test"
},
- "bundleDependencies": false,
"dependencies": {
"signal-exit": "^3.0.2"
},
- "deprecated": false,
- "description": "A very polite lock file utility, which endeavors to not litter, and to wait patiently for others.",
"devDependencies": {
"tap": "^11.1.3",
"touch": "0"
},
- "directories": {
- "test": "test"
+ "scripts": {
+ "test": "tap test/*.js --cov -J",
+ "changelog": "bash gen-changelog.sh",
+ "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/npm/lockfile.git"
},
- "homepage": "https://github.com/npm/lockfile#readme",
"keywords": [
"lockfile",
"lock",
@@ -51,17 +28,7 @@
"fs",
"O_EXCL"
],
+ "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
- "main": "lockfile.js",
- "name": "lockfile",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/npm/lockfile.git"
- },
- "scripts": {
- "changelog": "bash gen-changelog.sh",
- "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}",
- "test": "tap test/*.js --cov -J"
- },
- "version": "1.0.4"
+ "description": "A very polite lock file utility, which endeavors to not litter, and to wait patiently for others."
}