UNPKG

871 BJSONView Raw
1{
2 "name" : "uuid",
3 "version" : "1.4.1",
4 "description" : "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
5 "keywords" : ["uuid", "guid", "rfc4122"],
6 "author" : "Robert Kieffer <robert@broofa.com>",
7 "contributors" : [
8 {
9 "name": "Christoph Tavan <dev@tavan.de>",
10 "github": "https://github.com/ctavan"
11 }
12 ],
13 "main" : "./uuid.js",
14 "devDependencies": {
15 "mocha": "1.8.0"
16 },
17 "scripts": {
18 "test": "mocha test/test.js"
19 },
20 "browser": {
21 "./rng.js": "./rng-browser.js"
22 },
23 "repository" : {
24 "type" : "git",
25 "url" : "https://github.com/shtylman/node-uuid.git"
26 },
27 "testling": {
28 "browsers": [
29 "ie6..latest",
30 "firefox/3.6..latest",
31 "chrome/22..latest",
32 "safari/5.1..latest"
33 ],
34 "harness": "mocha-tdd",
35 "files": "test/*.js"
36 }
37}