-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 997 Bytes
/
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
{
"name": "vue-apitator",
"version": "0.0.19",
"description": "A simple way to query your REST or your GraphQL API in your Vue.js app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose",
"test-watch": "jest --verbose --watchAll",
"dev": "./node_modules/.bin/tsc --watch",
"build": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lefuturiste/apitator.git"
},
"keywords": [
"api",
"graphql",
"rest",
"vue",
"vue2",
"plugin"
],
"author": "lefuturiste <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lefuturiste/apitator/issues"
},
"homepage": "https://github.com/lefuturiste/apitator#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^0.26.0",
"vue": "^2.6.14"
}
}