forked from uuidjs/uuid
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 968 Bytes
/
package.json
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
{
"name": "uuid",
"version": "2.0.3",
"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"
}
],
"license": "MIT",
"main": "./uuid.js",
"devDependencies": {
"mocha": "1.8.0"
},
"scripts": {
"test": "mocha test/test.js"
},
"browser": {
"./rng.js": "./rng-browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/defunctzombie/node-uuid.git"
},
"testling": {
"browsers": [
"ie6..latest",
"firefox/3.6..latest",
"chrome/22..latest",
"safari/5.1..latest"
],
"harness": "mocha-tdd",
"files": "test/*.js"
}
}