forked from nuxt-modules/prismic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@nuxtjs/prismic",
"version": "1.2.6",
"description": "Add Prismic to your NuxtJS project",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"standard-version": "standard-version",
"unit": "jest",
"lint": "eslint src"
},
"keywords": [
"prismic",
"nuxt",
"vue",
"cms"
],
"contributors": [
"James Pegg <[email protected]>",
"Sebastien Chopin (@Atinux)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-community/prismic-module.git"
},
"bugs": {
"url": "https://github.com/nuxt-community/prismic-module/issues"
},
"homepage": "https://prismic.nuxtjs.org",
"dependencies": {
"@prismicio/client": "^4.0.0",
"@prismicio/vue": "^2.0.11",
"consola": "^2.15.3",
"prismic-dom": "^2.2.5"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"standard-version": "^8.0.2"
},
"engines": {
"node": ">= v8.17.0"
}
}