-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.89 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vue-gql",
"version": "0.2.3",
"description": "A small and fast GraphQL client for Vue.js",
"module": "dist/vql.esm.js",
"unpkg": "dist/vql.js",
"main": "dist/vql.js",
"types": "dist/types/src",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./scripts/deploy.sh",
"test": "jest",
"test:cover": "jest --coverage",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"build": "node scripts/build.js && npm run ts:defs",
"ts:defs": "tsc --emitDeclarationOnly"
},
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@commitlint/cli": "^8.0.0",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"bundlesize": "^0.18.0",
"chalk": "^2.4.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"filesize": "^4.1.2",
"flush-promises": "^1.0.2",
"graphql": "^14.4.2",
"graphql-tools": "^4.0.5",
"gzip-size": "^5.1.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"rollup": "^1.16.7",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit -E HUSKY_GIT_PARAMS"
}
},
"files": [
"dist/*.js",
"dist/locale/*.js",
"dist/types/**/*.d.ts"
],
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "10 kB"
}
],
"eslintIgnore": [
"locale",
"dist",
"scripts"
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add",
"jest --maxWorkers=1 --bail --findRelatedTests"
],
"*.js": [
"git add"
]
},
"dependencies": {
"fast-json-stable-stringify": "^2.0.0"
},
"peerDependencies": {
"vue": "^2.5.18",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
}
}