-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
62
63
{
"name": "fetch",
"version": "1.0.0",
"author": {
"name": "42Devs",
"email": "hello@42devs.cl"
},
"description": "A native node fetch wrapper",
"main": "lib/index.js",
"scripts": {
"test": "jest"
},
"engines": {
"node": "18"
},
"private": false,
"keywords": [
"fetch",
"request",
"xhr",
"http",
"https",
"api",
"json",
"http request"
],
"license": "MIT",
"contributors": [
{
"name": "Nicolas Martinez V.",
"email": "nicolas@42devs.cl",
"url": "https://github.com/TheMakunga"
}
],
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@cspell/dict-es-es": "^2.3.0",
"@jest/globals": "^29.7.0",
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/jest-runner": "^7.3.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cowsay": "^1.5.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.2"
}
}