-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 951 Bytes
/
package.json
File metadata and controls
44 lines (44 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
42
43
44
{
"name": "massping",
"description": "Mass send http requests for test web application",
"version": "1.0.10",
"type": "module",
"main": "index.js",
"scripts": {
"test": "ava",
"dev": "node cli/main \"http://httpbin.org/delay/10?id={1:}\""
},
"bin": {
"massping": "./cli/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mokafish/massping.git"
},
"keywords": [
"test",
"http",
"ping"
],
"author": "mokafish",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mokafish/massping/issues"
},
"homepage": "https://github.com/mokafish/massping#readme",
"devDependencies": {
"ava": "^6.4.0"
},
"dependencies": {
"form-data": "^4.0.4",
"got": "^14.4.7",
"meow": "^13.2.0",
"mime": "^4.0.7",
"socks": "^2.8.5",
"user-agents": "^1.1.593",
"winston": "^3.17.0"
},
"ava": {
"snapshotDir": "test/.snapshots"
}
}