-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.16 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
{
"name": "website-performance",
"version": "1.0.2",
"description": "gather common performance metrics from a website like time to interactive (tti) and DOMContentLoaded",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-web-module",
"clean": "nwb clean-module",
"test": "nwb test",
"test:coverage": "nwb test --coverage",
"test:watch": "nwb test --server"
},
"dependencies": {
"global": "~4.3.2"
},
"devDependencies": {
"nwb": "0.21.x"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hanford/website-performance.git"
},
"homepage": "https://github.com/hanford/website-performance",
"bugs": "https://github.com/hanford/website-performance/issues",
"authors": [
"Jack Hanford"
],
"tags": [
"website",
"performance",
"perf",
"tti",
"time to interactive",
"dcl",
"DOMContentLoaded",
"load complete"
],
"keywords": [
"website",
"performance",
"perf",
"tti",
"time to interactive",
"dcl",
"DOMContentLoaded",
"load complete"
]
}