UNPKG

943 BJSONView Raw
1{
2 "name": "uuid",
3 "version": "2.0.1",
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 "main": "./uuid.js",
22 "devDependencies": {
23 "mocha": "1.8.0"
24 },
25 "scripts": {
26 "test": "mocha test/test.js"
27 },
28 "browser": {
29 "./rng.js": "./rng-browser.js"
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/shtylman/node-uuid.git"
34 },
35 "testling": {
36 "browsers": [
37 "ie6..latest",
38 "firefox/3.6..latest",
39 "chrome/22..latest",
40 "safari/5.1..latest"
41 ],
42 "harness": "mocha-tdd",
43 "files": "test/*.js"
44 }
45}