forked from TooTallNate/node-time
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 699 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 699 Bytes
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
{
"name": "time",
"description": "\"time.h\" bindings for NodeJS",
"keywords": ["date", "time", "time.h", "timezone", "setTimezone", "getTimezone"],
"version": "0.9.0",
"repository": {
"type": "git",
"url": "git://github.com/TooTallNate/node-time.git"
},
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
"contributors": [
{ "name": "Diogo Resende", "email": "dresende@thinkdigital.pt" }
],
"main": "./index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"engines": {
"node": "*"
},
"dependencies": {
"bindings": "*"
, "debug": "*"
},
"devDependencies": {
"mocha": "*"
, "should": "*"
}
}