-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.27 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.27 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"author": "Anton Trofimenko",
"bugs": {
"url": "https://github.com/corefunc/http/issues"
},
"contributors": [
{
"email": "r37r0m0d3l@protonmail.com",
"name": "Anton Trofimenko"
}
],
"dependencies": {},
"description": "Utilities and tools to help build HTTP requests",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-private-methods": "7.10.4",
"@babel/preset-env": "7.12.0",
"@r37r0m0d3l/rollup-config-pkg": "git+https://github.com/r37r0m0d3l/rollup-config-pkg.git",
"babel-eslint": "10.1.0",
"eslint": "7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-jsdoc": "30.6.5",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.5.3",
"npm-check": "5.9.2",
"prettier": "2.1.2",
"rollup": "2.30.0"
},
"engines": {
"node": ">=12.9.0"
},
"engineStrict": true,
"exports": {
".": {
"browser": {
"import": "./dist/http.mjs",
"require": "./dist/http.cjs"
},
"node": {
"import": "./dist/http.mjs",
"require": "./dist/http.cjs"
},
"import": "./dist/http.mjs",
"require": "./dist/http.cjs",
"default": "./dist/http.js"
}
},
"files": [
"dist/http.cjs",
"dist/http.cjs.map",
"dist/http.d.ts",
"dist/http.js",
"dist/http.js.map",
"dist/http.mjs",
"dist/http.mjs.map"
],
"homepage": "https://github.com/corefunc/http",
"keywords": [
"http",
"http-utils",
"http-utilities",
"httpclient",
"httpmethods",
"httpheaders",
"httpstatus",
"headers",
"rest",
"response",
"server-response",
"http-request",
"http-requests"
],
"license": "MIT",
"main": "./dist/http.cjs",
"module": "./dist/http.mjs",
"name": "@corefunc/http",
"repository": {
"type": "git",
"url": "git+https://github.com/corefunc/http.git"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build:watch": "rollup --config rollup.config.mjs --watch",
"lint": "eslint ./src/**/*.mjs",
"lint:md": "remark .",
"package:upgrade": "npm-check --update",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"type": "module",
"types": "./dist/http.d.ts",
"version": "1.0.8"
}