-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.39 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.39 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
{
"name": "@42devs/fetch",
"version": "1.0.3",
"description": "a fetch wrapper",
"homepage": "https://github.com/42devs/packages_library/tree/main/packages/fetch/",
"bugs": {
"url": "https://github.com/42devs/packages_library/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/42devs/packages_library.git",
"directory": "packages/fetch"
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"build": "rollup -c ../../rollup.config.mjs",
"clean": "rimraf dist",
"build:clean": "pnpm run clean && pnpm run build",
"test": "NODE_ENV=test jest",
"lint": "eslint ./ --ext .ts --ignore-path .gitignore",
"lint:fix": "eslint ./ --ext .ts --ignore-path .gitignore --fix"
},
"keywords": [
"fetch",
"API",
"request",
"http",
"https",
"web"
],
"author": "42devs",
"contributors": [
{
"name": "Nicolas Martinez V.",
"email": "nicolas@42devs.cl",
"url": "https://github.com/TheMakunga"
}
],
"files": [
"lib/",
"README.md"
],
"directories": {
"lib": "lib"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}