-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 867 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 867 Bytes
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
{
"name": "gobits",
"version": "0.2.2",
"repository": "git@github.com:necrobits/gobits.git",
"description": "An extensible HTTP client for JS",
"keywords": [
"http",
"fetch",
"js"
],
"author": "Phuc Tran <andy.tran11996@gmail.com>",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"gen:docs": "typedoc"
},
"devDependencies": {
"@types/lodash-es": "^4.17.8",
"@types/qs": "^6.9.7",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
},
"dependencies": {
"lodash-es": "^4.17.21",
"qs": "^6.10.3",
"query-string": "^7.0.1"
}
}