-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "@igorjacauna/axios-dev-proxy",
"version": "0.0.10",
"description": "",
"repository": "igorjacauna/axios-dev-proxy",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev --coverage",
"lint": "eslint --cache --ext .ts,.js .",
"lint:fix": "eslint --cache --ext .ts,.js . --fix",
"prepack": "yarn run build",
"bump": "yarn test && changelogen --release",
"test": "yarn lint && vitest run --coverage"
},
"devDependencies": {
"@igorjacauna/eslint-config": "0.3.3",
"@vitest/coverage-v8": "0.34.1",
"changelogen": "0.5.5",
"eslint": "8.46.0",
"eslint-plugin-prettier": "5.0.0",
"nock": "13.3.2",
"prettier": "3.0.1",
"typescript": "5.1.6",
"unbuild": "2.0.0",
"vitest": "1.4.0"
},
"dependencies": {
"axios": "1.4.0",
"ohash": "1.1.3",
"ufo": "1.4.0"
}
}