forked from uuidjs/uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 789 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
{
"name" : "node-uuid",
"description" : "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
"url" : "https://github.com/broofa/node-uuid",
"keywords" : ["uuid", "guid", "rfc4122"],
"author" : "Robert Kieffer <[email protected]>",
"contributors" : [
{"name": "Christoph Tavan <[email protected]>", "github": "https://github.com/ctavan"}
],
"bin": {
"uuid": "./bin/uuid"
},
"scripts": {
"test": "node test/test.js"
},
"lib" : ".",
"main" : "./uuid.js",
"repository" : { "type" : "git", "url" : "https://github.com/broofa/node-uuid.git" },
"version" : "1.4.1",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/broofa/node-uuid/master/LICENSE.md"
}
]
}