forked from eugenehp/react-native-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.35 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"author": {
"name": "Eugene Hauptmann",
"email": "[email protected]"
},
"bin": {
"uuid": "./bin/uuid"
},
"bugs": {
"url": "https://github.com/broofa/node-uuid/issues"
},
"contributors": [
{
"email": "[email protected]",
"name": "Robert Kieffer"
},
{
"name": "AJ ONeal",
"email": "[email protected]"
},
{
"name": "Christoph Tavan",
"email": "[email protected]"
}
],
"dependencies": {
"crypto-js": "^3.1.6"
},
"description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs for React Native",
"devDependencies": {
"nyc": "^2.2.0"
},
"directories": {},
"homepage": "https://github.com/eugenehp/react-native-uuid",
"installable": true,
"keywords": [
"react-native",
"react",
"iOS",
"Android",
"guid",
"rfc4122",
"uuid"
],
"lib": ".",
"license": "MIT",
"main": "./uuid.js",
"maintainers": [
{
"name": "Eugene Hauptmann",
"email": "[email protected]"
}
],
"name": "react-native-uuid",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/eugenehp/react-native-uuid.git"
},
"scripts": {
"coverage": "nyc npm test && nyc report",
"test": "node test/test.js"
},
"url": "http://github.com/eugenehp/react-native-uuid",
"version": "1.4.8"
}