UNPKG

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