You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
522 B
29 lines
522 B
7 years ago
|
{
|
||
|
"name": "uuid",
|
||
|
"version": "3.1.0",
|
||
|
"description": "RFC4122 (v1, v4, and v5) UUIDs",
|
||
|
"keywords": [
|
||
|
"uuid",
|
||
|
"guid",
|
||
|
"rfc4122"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"bin": {
|
||
|
"uuid": "./bin/uuid"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"mocha": "3.1.2"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "mocha test/test.js"
|
||
|
},
|
||
|
"browser": {
|
||
|
"./lib/rng.js": "./lib/rng-browser.js",
|
||
|
"./lib/sha1.js": "./lib/sha1-browser.js"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/kelektiv/node-uuid.git"
|
||
|
}
|
||
|
}
|