-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "node-superfetch",
"version": "0.3.4",
"description": "A wrapper for Node.js' fetch API that makes it appear like superagent.",
"main": "index.js",
"typings": "typings/index.d.ts",
"scripts": {
"test": "npm run lint",
"lint": "eslint . --ext .js --ext .json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragonfire535/node-superfetch.git"
},
"keywords": [
"fetch",
"node-fetch",
"superagent",
"snekfetch",
"request",
"http",
"https"
],
"author": "dragonfire535 <danielbodendahl@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dragonfire535/node-superfetch/issues"
},
"homepage": "https://github.com/dragonfire535/node-superfetch#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"arraybuffer-to-buffer": "^0.0.7",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.7.18",
"eslint": "^8.23.1",
"eslint-config-amber": "^2.0.4",
"eslint-plugin-json": "^3.1.0",
"typescript": "^4.8.3"
},
"eslintConfig": {
"extends": "amber",
"plugins": [
"json"
]
}
}