-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
{
"name": "got-fetch",
"version": "6.0.2",
"type": "module",
"license": "MIT",
"description": "A fetch-compatible interface to the got HTTP client",
"homepage": "https://github.com/alexghr/got-fetch#readme",
"repository": {
"type": "git",
"url": "https://github.com/alexghr/got-fetch.git"
},
"bugs": {
"url": "https://github.com/alexghr/got-fetch/issues"
},
"author": "Alex Gherghisan <[email protected]> (https://alexghr.me)",
"main": "./out/lib",
"types": "./out/lib",
"exports": {
".": "./out/lib/index.js"
},
"scripts": {
"build": "$npm_execpath run build:lib",
"build:lib": "tsc --build ./src/lib",
"build:test": "tsc --build ./src/test",
"build:test:watch": "tsc --build --watch ./src/test",
"clean": "tsc --build --clean ./src/lib ./src/test",
"postclean": "rm -rf ./out",
"lint": "eslint .",
"prepublish": "$npm_execpath run build",
"pretest": "$npm_execpath run build:test",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --no-warnings\" jest",
"pretest:watch": "$npm_execpath run build:test",
"test:watch": "concurrently '$npm_execpath run build:test:watch' 'jest --watchAll'",
"release": "semantic-release",
"cz": "cz"
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.2.3",
"@types/nock": "^11.1.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"concurrently": "^9.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.4.1",
"got": "^14.0.0",
"jest": "^29.0.1",
"nock": "^14.0.0",
"semantic-release": "^24.0.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"got": "^14.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"resolutions": {
"cz-conventional-changelog/**/minimist": "1.2.6",
"jest/**/minimist": "1.2.6"
}
}