-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.33 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
{
"name": "nuxtjs-ghost",
"version": "1.1.14",
"description": "NuxtJS module to easily interact with the Ghost API",
"repository": "https://github.com/ditschedev/nuxtjs-ghost",
"homepage": "https://github.com/ditschedev/nuxtjs-ghost",
"license": "MIT",
"author": "Tobias Dittmann <hello@ditsche.dev> (https://ditsche.dev)",
"keywords": [
"nuxt",
"nuxtjs",
"nuxt.js",
"nuxt-module",
"vue",
"vuejs",
"ghost",
"ghost-content-api",
"nuxt-ghost",
"nuxtjs-ghost"
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue .",
"release": "yarn test && standard-version && git push --follow-tags && yarn publish",
"test": "yarn lint && jest"
},
"dependencies": {
"@tryghost/content-api": "^1.11.4"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "^28.1.3",
"eslint": "latest",
"husky": "latest",
"jest": "^28.1.3",
"nuxt-edge": "^2.13.0-26541346.39dd866b",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}