gradio / node_modules /uuid /package.json
reisarod's picture
Upload folder using huggingface_hub
5fae594 verified
raw
history blame contribute delete
985 Bytes
{
"name": "uuid",
"version": "1.4.2",
"description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
"keywords": [
"uuid",
"guid",
"rfc4122"
],
"author": "Robert Kieffer <[email protected]>",
"contributors": [
{
"name": "Christoph Tavan <[email protected]>",
"github": "https://github.com/ctavan"
},
{
"name": "Vincent Voyer <[email protected]>",
"github": "https://github.com/vvo"
}
],
"main": "./uuid.js",
"devDependencies": {
"mocha": "1.8.0"
},
"scripts": {
"test": "mocha test/test.js"
},
"browser": {
"./rng.js": "./rng-browser.js",
"./buffer.js": "./buffer-browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shtylman/node-uuid.git"
},
"testling": {
"browsers": [
"ie6..latest",
"firefox/3.6..latest",
"chrome/22..latest",
"safari/5.1..latest"
],
"harness": "mocha-tdd",
"files": "test/*.js"
}
}