forked from Gomah/nuxt-graphql-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "nuxt-graphql-request",
"version": "4.3.0",
"description": "Easy GraphQL client integration with Nuxt.js",
"author": {
"name": "Gomah <hi@gomah.fr>"
},
"keywords": [
"vue",
"nuxt",
"nuxtjs",
"nuxt.js",
"graphql",
"graphql-request",
"nuxt-graphql",
"nuxt-graphql-request"
],
"typings": "types/index.d.ts",
"main": "lib/module.js",
"files": [
"lib",
"types/*.d.ts"
],
"repository": "https://github.com/Gomah/nuxt-graphql-request",
"homepage": "https://github.com/Gomah/nuxt-graphql-request",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"dev": "nuxt test/fixture",
"test:system": "NODE_ENV=test jest --testRegex \"/test/system/(.+)\\.test\\.ts$\"",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"prepare": "husky install",
"prepublishOnly": "yarn test",
"test": "yarn test:lint && yarn test:jest",
"test:jest": "NODE_ENV=test && jest --runInBand",
"test:lint": "eslint --ext .js, lib/module.js"
},
"peerDependencies": {
"graphql": "14.x || 15.x"
},
"dependencies": {
"cross-fetch": "^3.1.4",
"graphql-request": "^3.7.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@nuxt/types": "^2.15.8",
"@types/jest": "^27.4.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.5",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"graphql": "^16.2.0",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jsdom": "^19.0.0",
"nuxt": "^2.15.8",
"prettier": "^2.5.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"standard-version": "^9.3.2"
}
}