File size: 985 Bytes
5fae594 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
{
"name": "uuid",
"version": "1.4.2",
"description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
"keywords": [
"uuid",
"guid",
"rfc4122"
],
"author": "Robert Kieffer <robert@broofa.com>",
"contributors": [
{
"name": "Christoph Tavan <dev@tavan.de>",
"github": "https://github.com/ctavan"
},
{
"name": "Vincent Voyer <vincent@zeroload.net>",
"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"
}
}
|