forked from prismicio/prismic-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 895 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 895 Bytes
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
{
"name": "prismic-vue",
"version": "1.3.0",
"description": "Vue.js plugin to facilitate integration of content managed with Prismic",
"license": "Apache-2.0",
"repository": "github:prismicio/prismic-vue",
"author": "Prismic",
"main": "dist/prismic-vue.common.js",
"module": "dist/prismic-vue.esm.js",
"unpkg": "dist/prismic-vue.min.js",
"jsdelivr": "dist/prismic-vue.min.js",
"scripts": {
"start": "npm run build",
"build": "rollup -c"
},
"dependencies": {
"prismic-dom": "^2.1.0",
"prismic-javascript": "^2.0.3"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-vue": "^4.3.0",
"vue-template-compiler": "^2.5.16"
}
}