-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
79 lines (79 loc) · 2.02 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
{
"name": "vue-api-query",
"version": "0.0.0-development",
"description": "💎 Elegant and simple way to build requests for REST API",
"main": "build/index.js",
"types": "./index.d.ts",
"files": [
"build",
"index.d.ts"
],
"scripts": {
"build": "babel src -d build",
"lint": "eslint --ext .js .",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robsontenorio/vue-api-query.git"
},
"keywords": [
"vue",
"nuxt",
"api",
"rest",
"query",
"builder",
"laravel"
],
"author": "Robson Tenório",
"contributors": [
{
"name": "João Pedro Antunes Silva",
"email": "joao-pedroas@hotmail.com",
"url": "https://github.com/JoaoPedroAS51"
},
{
"name": "Peter Krebs",
"url": "https://github.com/Peter-Krebs"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/robsontenorio/vue-api-query/issues"
},
"homepage": "https://github.com/robsontenorio/vue-api-query#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"axios": "^0.21.4",
"axios-mock-adapter": "^1.22.0",
"babel-eslint": "^10.1.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^24.9.0",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5"
},
"dependencies": {
"@types/qs": "^6.9.17",
"defu": "6.1.2",
"dotprop": "^1.2.1",
"dset": "^3.1.4",
"object-to-formdata": "^4.5.1",
"qs": "^6.13.0"
}
}