-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.81 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"author": {
"name": "Yehor Sergeenko",
"email": "yehor.sergeenko@gmail.com",
"url": "https://github.com/bricss"
},
"bugs": {
"url": "https://github.com/bricss/rekwest/issues"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"eslint-config-ultra-refined": "^3.3.1",
"mocha": "^11.0.1"
},
"description": "The robust request library that humanity deserves 🌐",
"engines": {
"node": ">=18.13.0"
},
"exports": {
"import": "./src/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/bricss/rekwest#readme",
"keywords": [
"alpn",
"backoff",
"brotli",
"cookie",
"deflate",
"fetch",
"formdata",
"gzip",
"http",
"https",
"h2",
"h2c",
"http2",
"multipart",
"request",
"redirect",
"retry",
"retry-after",
"stream",
"upload"
],
"license": "MIT",
"name": "rekwest",
"repository": {
"type": "git",
"url": "git+https://github.com/bricss/rekwest.git"
},
"scripts": {
"build": "rm -rf dist && npx babel src -d dist",
"cert:gen": "openssl req -days 365 -keyout localhost.key -newkey ec -nodes -pkeyopt ec_paramgen_curve:prime256v1 -subj //SKIP=1/CN=localhost -out localhost.cert -x509",
"cert:ken": "openssl x509 -in localhost.cert -noout -text",
"lint": "eslint",
"prepack": "npm run build && sh pony.sh",
"pretest": "rm -rf coverage && npm run cert:gen",
"test": "mocha",
"test:bail": "mocha --bail",
"test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
},
"version": "5.3.1"
}