forked from 11ty/eleventy-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "@11ty/eleventy-plugin-vue",
"version": "0.2.0",
"description": "Use Vue.js single file components in Eleventy.",
"publishConfig": {
"access": "public"
},
"main": ".eleventy.js",
"scripts": {
"test": "ava",
"sample": "ELEVENTY_EXPERIMENTAL=true npx @11ty/eleventy --input=test/sample"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-plugin-vue.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-plugin-vue/issues"
},
"homepage": "https://github.com/11ty/eleventy-plugin-vue#readme",
"peerDependencies": {
"@11ty/eleventy": ">=0.11.0"
},
"ava": {
"failFast": false,
"files": [
"./test/*.js"
],
"ignoredByWatcher": [
"./.cache/**"
]
},
"dependencies": {
"@11ty/eleventy-assets": "1.0.4",
"fast-glob": "^3.2.4",
"lodash.merge": "^4.6.2",
"rollup": "^2.22.1",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.11",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"devDependencies": {
"ava": "^3.10.1"
}
}