-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "fetchery",
"version": "0.2.0",
"description": "A a little wrapper around Javascript Fetch API written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"lint": "eslint src/** test/** --ext ts",
"test": "vitest",
"test:ui": "vitest --ui --watch --coverage.reporter=html",
"coverage": "nyc report --reporter=text-summary --reporter=html",
"build": "rm -rf dist && tsc"
},
"author": "aileo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:aileo/fetchery.git"
},
"bugs": {
"url": "https://github.com/aileo/fetchery/issues"
},
"homepage": "https://github.com/aileo/fetchery/blob/master/README.md",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/multer": "^1.4.5",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@vitest/coverage-istanbul": "^3.0.2",
"@vitest/ui": "^3.0.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"multer": "^1.4.2",
"nyc": "^17.1.0",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"vite": "^6.0.9",
"vitest": "^3.0.2"
},
"browserslist": [
"last 3 Chrome versions"
]
}