-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "hyttpo",
"version": "0.3.6",
"description": "Easy way to send requests for node.js and browser",
"main": "dist/js/index.js",
"browser": "dist/webpack/index.js",
"unpkg": "dist/webpack/index.js",
"types": "dist/js/index.d.ts",
"homepage": "https://garlic-team.js.org/guide/hyttpo",
"bugs": {
"url": "https://github.com/Garlic-Team/hyttpo/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/garlic-team/hyttpo.git"
},
"author": "Garlic Team",
"license": "ISC",
"scripts": {
"lint": "npx eslint .",
"build": "bash scripts/build.bash",
"build:babel": "npx babel --extensions .ts ./src -d ./dist/js --minified",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/js/",
"build:webpack": "npx webpack",
"build:docs": "typedoc --json docs/out-master.json src/index.ts && node scripts/docs.mjs"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@discordjs/ts-docgen": "0.3.4",
"@types/eslint": "8.4.1",
"@types/estree": "0.0.51",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"buffer": "6.0.3",
"eslint": "8.9.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-prettier": "4.0.0",
"ignore-loader": "0.1.2",
"prettier": "2.5.1",
"process": "0.11.10",
"typescript": "4.5.5",
"url": "0.11.0",
"webpack": "5.69.1",
"webpack-cli": "4.9.2"
},
"dependencies": {
"follow-redirects": "^1.14.8"
},
"engines": {
"node": ">=16.x"
}
}