-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.44 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vue-axios-http",
"version": "3.5.0",
"description": "Elegant and simple way to build requests for REST API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest --run",
"test:cov": "vitest run --coverage",
"test:watch": "yarnr test",
"build": "yarn clean && tsc",
"watch": "tsc -w",
"start": "nodemon",
"release": "standard-version && git push --follow-tags origin main && yarn publish",
"clean": "rimraf dist",
"prepare": "husky",
"lint:js": "eslint .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/chantouchsek/vue-axios-http.git"
},
"keywords": [
"vue",
"nuxt",
"api",
"rest",
"query",
"builder",
"laravel",
"queries",
"vue-axios",
"vue api queries",
"api request"
],
"author": {
"name": "Chantouch Sek",
"email": "[email protected]",
"url": "https://chantouch.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chantouchsek/vue-axios-http/issues"
},
"homepage": "https://github.com/chantouchsek/vue-axios-http#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.2.0",
"@nuxt/types": "^2.17.3",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.10",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^1.3.6",
"axios-mock-adapter": "^1.22.0",
"eslint": "^9.2.0",
"eslint-plugin-vue": "^9.25.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"nuxt": "^2.17.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"sass": "^1.77.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"vue": "^2.7.16"
},
"files": [
"dist",
"nuxt"
],
"dependencies": {
"axios": "^0.28.1",
"lodash": "^4.17.21",
"qs": "^6.12.1"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache",
"*.**": "prettier --check --ignore-unknown"
}
}