-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "http-libraries",
"description": "A collection of HTTP libraries for comparison and reference.",
"version": "0.0.1",
"main": "src/index.js",
"devDependencies": {
"eslint": "^7.31.0",
"parcel-bundler": "^1.12.5"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html",
"lint": "eslint src/**",
"lint-fix": "eslint src/** --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nishanbajracharya/http-libraries.git"
},
"keywords": [
"http"
],
"author": "Nishan Bajracharya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nishanbajracharya/http-libraries/issues"
},
"homepage": "https://github.com/nishanbajracharya/http-libraries#readme",
"dependencies": {
"axios": "^0.21.1",
"ky": "^0.28.5",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"superagent": "^6.1.0",
"superagent-prefix": "^0.0.2",
"superagent-use": "^0.1.0",
"wretch": "^1.7.5"
},
"browserslist": [
"last 2 Chrome versions"
]
}