-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 951 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 951 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "simulate-network-conditions",
"description": "Simulate lossy or high-latency network conditions.",
"version": "1.0.1",
"main": "index.js",
"files": [
"index.js",
"example.js"
],
"keywords": [
"network",
"packet loss",
"latency",
"throttling",
"devtools"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/simulate-network-conditions",
"repository": "derhuerst/simulate-network-conditions",
"bugs": "https://github.com/derhuerst/simulate-network-conditions/issues",
"license": "ISC",
"engines": {
"node": ">=10"
},
"dependencies": {
"parallel-stream": "^1.1.2"
},
"devDependencies": {
"eslint": "^7.1.0",
"from2": "^2.3.0",
"get-stream": "^5.1.0",
"pump": "^3.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.0"
},
"scripts": {
"test": "env NODE_ENV=dev node test.js | tap-min",
"lint": "eslint . || exit 0",
"prepublishOnly": "npm test && npm run lint"
}
}