forked from nuxt-modules/prismic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "@nuxtjs/prismic",
"version": "1.4.2",
"description": "Easily connect your Nuxt.js application to your content hosted on Prismic",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"prismic",
"cms"
],
"repository": "nuxt-community/prismic-module",
"license": "MIT",
"main": "src/module.js",
"files": [
"src",
"templates"
],
"scripts": {
"dev": "nuxt example",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"release:dry": "standard-version --dry-run",
"release:alpha": "yarn test && standard-version --release-as minor --prerelease alpha && git push --follow-tags && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as minor --prerelease alpha --dry-run",
"unit": "jest",
"lint": "eslint --ext .js,.ts,.vue .",
"test": "npm run lint && npm run unit"
},
"dependencies": {
"@prismicio/client": "^4.0.0 || ^5.1.0",
"@prismicio/vue": "^2.1.0",
"consola": "^2.15.3",
"prismic-dom": "^2.2.6"
},
"devDependencies": {
"@nuxtjs/eslint-config": "latest",
"@types/jest": "latest",
"babel-eslint": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">= v12.0.0"
}
}