-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
56
57
58
59
60
{
"name": "ponse",
"version": "7.0.0",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "Module for work with requests and responses",
"homepage": "http://github.com/coderaiser/ponse",
"type": "commonjs",
"main": "./lib/ponse.js",
"exports": "./lib/ponse.js",
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/ponse.git"
},
"scripts": {
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"report": "madrun report",
"coverage": "madrun coverage",
"test": "madrun test",
"watch:coverage": "madrun watch:coverage",
"watch:test": "madrun watch:test",
"watcher": "madrun watcher"
},
"keywords": [
"request",
"response",
"send",
"parse"
],
"bin": {
"ponse": "bin/ponse.js"
},
"dependencies": {
"debug": "^4.1.0",
"file-type": "^16.2.0",
"files-io": "^4.0.0",
"itype": "^3.0.1",
"try-to-catch": "^3.0.0"
},
"devDependencies": {
"@cloudcmd/stub": "^3.3.0",
"c8": "^7.11.2",
"coveralls": "^3.0.2",
"eslint": "^8.14.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-putout": "^14.11.0",
"madrun": "^9.0.2",
"nodemon": "^2.0.2",
"putout": "^25.15.0",
"serve-once": "^2.0.0",
"supertape": "^7.2.3"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}