-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "fetchbook",
"version": "2.1.1",
"description": "Manage your HTTP requests",
"author": "Alejandro Tardín <alejandro@tardin.com>",
"license": "MIT",
"dependencies": {
"add-dependencies": "^1.1.0",
"bun": "^1.0.5",
"commander": "^11.0.0",
"execa": "^8.0.1",
"expect": "^29.7.0",
"fetch-to-curl": "^0.6.0",
"fs-extra": "^11.1.1",
"fuse.js": "^6.6.2",
"glob": "^10.3.10",
"inquirer-autocomplete-standalone": "^0.7.0",
"json-colorizer": "^2.2.2",
"json-server": "^0.17.4",
"listr2": "^7.0.1",
"lodash.groupby": "^4.6.0",
"picocolors": "^1.0.0",
"titleize": "^4.0.0",
"to-space-case": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/json-server": "^0.14.5",
"@types/lodash.groupby": "^4.6.7",
"@types/to-space-case": "^1.0.0",
"bun-types": "latest",
"fetchbook": ".",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"typescript": "^5.0.0"
},
"bin": {
"fetchbook": "bin/fetchbook.js"
},
"scripts": {
"test": "bun test",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4lejandrito/fetchbook.git"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
]
},
"lint-staged": {
"*.{js,ts,json,md,yml}": "prettier --write"
}
}