forked from Jaguard/time-require
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 930 Bytes
/
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
{
"name": "time-require",
"description": "Displays the execution time for Node.js modules loading by hooking require() calls",
"version": "2.0.1",
"private": true,
"homepage": "https://github.com/jonschlinkert/time-require",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/time-require",
"bugs": {
"url": "https://github.com/jonschlinkert/time-require/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"minimist": "^1.2.5",
"text-table": "^0.2.0"
},
"keywords": [
"require",
"time"
],
"devDependencies": {
"gulp-format-md": "^2.0.0"
},
"verb": {
"toc": false,
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}