-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "petitio",
"version": "1.4.0",
"description": "Zero-dependency HTTP library designed to be simple, fast, and type-strong.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"scripts": {
"prepare": "husky install",
"prepack": "npm run build",
"build": "run-p build:*",
"build:main": "node esbuild.config.js",
"build:types": "tsc -b src",
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
"docs": "typedoc src/**/*.ts --entryPoints src/index.ts ./tsconfig.json",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext ts --fix",
"lint:docs": "eslint docs --fix",
"bench": "node benchmarks/index.mjs"
},
"author": "Vetlix <vetlixk@gmail.com> doge <doge@helper.wtf> Nytelife26 <nytelife@protonmail.com> (https://github.com/Nytelife26)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/helperdiscord/petitio.git"
},
"devDependencies": {
"@jest/types": "^26.6.2",
"@kludge-cs/bench-utils": "^1.0.1",
"@kludge-cs/eslint-config-js": "^1.2.0",
"@kludge-cs/eslint-config-ts": "^2.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"abort-controller": "^3.0.0",
"benchmark": "^2.1.4",
"esbuild": "^0.11.20",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"gen-esm-wrapper": "^1.1.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^11.0.0",
"node-abort-controller": "^2.0.0",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.4.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"undici": "^3.3.6"
},
"engines": {
"node": ">=12.3.0"
}
}