-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "ntp-client",
"description": "Pure Javascript implementation of the NTP Client Protocol",
"version": "0.5.3",
"homepage": "https://github.com/moonpyk/node-ntp-client",
"author": {
"name": "Clément Bourgeois",
"email": "[email protected]",
"url": "http://www.moonpyk.net"
},
"repository": {
"type": "git",
"url": "git://github.com/moonpyk/node-ntp-client.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/moonpyk/node-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": [
"date",
"ntp"
]
}