-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.42 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
67
68
69
70
71
72
73
74
75
76
{
"name": "time-diff",
"description": "Returns the formatted, high-resolution time difference between `start` and `end` times.",
"version": "0.3.1",
"homepage": "https://github.com/jonschlinkert/time-diff",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/time-diff",
"bugs": {
"url": "https://github.com/jonschlinkert/time-diff/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"extend-shallow": "^2.0.1",
"is-number": "^2.1.0",
"log-utils": "^0.1.0",
"pretty-time": "^0.2.0"
},
"devDependencies": {
"gulp-format-md": "^0.1.7",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"strip-color": "^0.1.0"
},
"keywords": [
"console",
"diff",
"difference",
"elapse",
"elapsed",
"log",
"pretty",
"terminal",
"time",
"time-diff",
"timer"
],
"verb": {
"plugins": [
"gulp-format-md"
],
"reflinks": [
"pretty-time",
"verb",
"minimist"
],
"related": {
"list": [
"ansi-colors",
"log-utils",
"pretty-time",
"time-diff"
]
},
"layout": "default",
"toc": {
"render": false
},
"run": true,
"lint": {
"reflinks": true
},
"tasks": [
"readme"
]
}
}