-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "vue-axillo",
"version": "0.1.0",
"description": "Composable Axios for REST API with query notation GraphQL",
"license": "MIT",
"repository": "Scrum/vue-axillo",
"bugs": "Scrum/vue-axillo/issues",
"author": {
"name": "Ivan Demidov",
"email": "[email protected]",
"url": "https://twitter.com/Scrum_"
},
"main": "lib/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md && git commit -m \"build: update changelog\"",
"prepare": "npm run build",
"build": "rimraf lib && babel src -d lib",
"test": "xo && nyc ava",
"pretest": "clinton"
},
"files": [
"lib/"
],
"keywords": [
"vue",
"axios",
"rest",
"api",
"graphql",
"composable"
],
"dependencies": {
"axios": "^0.20.0",
"rexios": "0.0.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"ava": "^3.12.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-minify": "^0.5.1",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.1.0",
"husky": "^4.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.0",
"vue": "^3.0.0",
"xo": "^0.33.1"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"funding": {
"type": "patreon",
"url": "https://patreon.com/scrums"
}
}