-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 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
{
"name": "@luxdamore/nuxt-apis-to-file",
"version": "1.3.0",
"description": "Nuxt module to merge and transform multiple API + GraphQL requests into a single one, like a payload extractor",
"author": "Luca Iaconelli <[email protected]> (https://lucaiaconelli.it)",
"license": "MIT",
"homepage": "https://luxdamore.github.io/nuxt-apis-to-file",
"keywords": [
"nuxt-module",
"vuejs",
"nuxtjs",
"modules",
"json-data",
"performance",
"build",
"axios",
"apis",
"json",
"graphql",
"optimization-algorithms",
"file"
],
"contributors": [
{
"name": "Luca Iaconelli <[email protected]> (https://lucaiaconelli.it)"
}
],
"main": "lib/module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/LuXDAmore/nuxt-apis-to-file.git"
},
"bugs": {
"url": "https://github.com/LuXDAmore/nuxt-apis-to-file/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"serve": "yarn dev",
"dev": "nuxt -o example",
"build": "nuxt build example",
"pregenerate": "yarn test",
"generate": "nuxt generate example",
"eslint": "eslint --ext .js,.vue .",
"eslint-fix": "eslint --fix --ext .js,.vue .",
"lint": "yarn eslint",
"lint-fix": "yarn eslint-fix",
"test": "yarn lint && jest",
"release": "yarn test && yarn generate && standard-version && git push --follow-tags && yarn publish"
},
"files": [
"lib"
],
"dependencies": {
"axios": "^0.21.1",
"consola": "^2.15.0",
"dot-object": "^2.1.4",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/module-test-utils": "1.6.3",
"@vue/eslint-config-prettier": "latest",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"codecov": "^3.7.2",
"eslint": "^7.10.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "4.0.2",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unicorn": "^26.0.1",
"eslint-plugin-vue": "^7.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jsdom": "^16.4.0",
"markdownlint": "^0.22.0",
"nuxt": "^2.14.6",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"standard-version": "^9.0.0"
}
}