forked from sebastianlzy/superagent-debugger
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 834 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
{
"name": "superdebug",
"version": "2.2.0",
"description": "Debug Superagent Requests - generates curl output",
"main": "superdebug-server.js",
"browser": "superdebug-browser.js",
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"test": "DEBUG=super-* tape test/*.js",
"coverage": "nyc --reporter=html --reporter=text npm run test"
},
"keywords": [
"log",
"debug",
"superagent",
"curl"
],
"repository": {
"type": "git",
"url": "https://github.com/andineck/superdebug"
},
"author": "Andi Neck",
"license": "MIT",
"devDependencies": {
"form-data": "^2.3.1",
"nock": "^9.0.22",
"nyc": "^10.1.2",
"superagent": "^3.6.3",
"standard": "^12.0.1",
"tape": "^4.8.0"
},
"dependencies": {
"chalk": "^1.1.3",
"debug": "^2.6.0"
}
}