-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
43
44
45
46
47
{
"name": "network-idle",
"version": "0.2.0",
"description": "Detect when the browser's network requests are idle",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "scripts/build.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supremetechnopriest/network-idle.git"
},
"keywords": [
"idle",
"network",
"request",
"detection",
"event",
"events",
"network idle",
"request idle"
],
"author": "Randy Lebeau",
"license": "MIT",
"bugs": {
"url": "https://github.com/supremetechnopriest/network-idle/issues"
},
"homepage": "https://github.com/supremetechnopriest/network-idle#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"estrella": "^1.4.1",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}