forked from robsontenorio/vue-api-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "vue-api-query",
"version": "1.5.1",
"description": "💎 Elegant and simple way to build requests for REST API",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"prepare": "yarn build && yarn cc",
"test": "jest --watch --coverage",
"cc": "jest --coverage"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"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",
"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.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.3.1",
"axios": "0.18.1",
"axios-mock-adapter": "^1.16.0",
"babel-eslint": "^10.0.1",
"codecov": "^3.2.0",
"eslint": "^5.14.0",
"jest": "^24.1.0"
}
}