This repository has been archived by the owner on Jul 28, 2021. It is now read-only.
forked from uuidjs/uuid
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
AJ ONeal
committed
Nov 12, 2015
1 parent
8baa708
commit 672f383
Showing
3 changed files
with
60 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,61 @@ | ||
| { | ||
| "name" : "node-uuid", | ||
| "description" : "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.", | ||
| "url" : "http://github.com/broofa/node-uuid", | ||
| "keywords" : ["uuid", "guid", "rfc4122"], | ||
| "author" : "Robert Kieffer <robert@broofa.com>", | ||
| "contributors" : [ | ||
| {"name": "Christoph Tavan <dev@tavan.de>", "github": "https://github.com/ctavan"} | ||
| ], | ||
| "author": { | ||
| "email": "robert@broofa.com", | ||
| "name": "Robert Kieffer" | ||
| }, | ||
| "bin": { | ||
| "uuid": "./bin/uuid" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/broofa/node-uuid/issues" | ||
| }, | ||
| "contributors": [ | ||
| { | ||
| "name": "AJ ONeal", | ||
| "email": "coolaj86@gmail.com" | ||
| }, | ||
| { | ||
| "name": "Christoph Tavan", | ||
| "email": "dev@tavan.de" | ||
| } | ||
| ], | ||
| "dependencies": {}, | ||
| "description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.", | ||
| "devDependencies": { | ||
| "nyc": "^2.2.0" | ||
| }, | ||
| "directories": {}, | ||
| "homepage": "https://github.com/broofa/node-uuid", | ||
| "installable": true, | ||
| "keywords": [ | ||
| "guid", | ||
| "rfc4122", | ||
| "uuid" | ||
| ], | ||
| "lib": ".", | ||
| "licenses": [ | ||
| { | ||
| "type": "MIT", | ||
| "url": "https://raw.github.com/broofa/node-uuid/master/LICENSE.md" | ||
| } | ||
| ], | ||
| "main": "./uuid.js", | ||
| "maintainers": [ | ||
| { | ||
| "name": "broofa", | ||
| "email": "robert@broofa.com" | ||
| } | ||
| ], | ||
| "name": "node-uuid", | ||
| "optionalDependencies": {}, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/broofa/node-uuid.git" | ||
| }, | ||
| "scripts": { | ||
| "test": "node test/test.js", | ||
| "coverage": "nyc npm test && nyc report" | ||
| "coverage": "nyc npm test && nyc report", | ||
| "test": "node test/test.js" | ||
| }, | ||
| "lib" : ".", | ||
| "main" : "./uuid.js", | ||
| "repository" : { "type" : "git", "url" : "https://github.com/broofa/node-uuid.git" }, | ||
| "version" : "1.4.2", | ||
| "license" : "MIT", | ||
| "devDependencies": { "nyc": "^2.2.0" } | ||
|
|
||
| "url": "http://github.com/broofa/node-uuid", | ||
| "version": "1.4.4" | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters