forked from artem-russkikh/react-native-ntp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "react-native-ntp-client",
"description": "React Native compatible implementation of the NTP Client Protocol",
"version": "1.0.1",
"homepage": "https://github.com/artem-russkikh/react-native-ntp-client",
"author": {
"name": "Clément Bourgeois",
"email": "[email protected]",
"url": "http://www.moonpyk.net"
},
"contributors": [
"Artem Russkikh <[email protected]> (http://artem-russkikh.ru/)",
"Info-Bit <[email protected]> (http://info-bit.com)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/artem-russkikh/react-native-ntp-client.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/artem-russkikh/react-native-ntp-client/blob/master/LICENSE-MIT"
}
],
"main": "lib/ntp-client",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt jshint nodeunit"
},
"devDependencies": {
"grunt": ">= 0.4.1",
"grunt-contrib-jshint": ">= 0.6.0",
"grunt-contrib-nodeunit": ">= 0.2.0",
"grunt-contrib-watch": ">= 0.4.0",
"nodeunit": ">= 0.8.1"
},
"bin": {
"node-ntp-client": "bin/node-ntp-client"
},
"keywords": [
"react-native",
"date",
"ntp"
],
"dependencies": {
"node-libs-react-native": "1.0.3"
},
"peerDependencies": {
"react-native-udp": "^2.6.1"
},
"browser": {
"dgram": "react-native-udp"
}
}