forked from 11ty/eleventy-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.19 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": "@11ty/eleventy-navigation",
"version": "0.3.2",
"publishConfig": {
"access": "public"
},
"description": "A plugin for creating hierarchical navigation in Eleventy projects. Supports breadcrumbs too!",
"main": ".eleventy.js",
"scripts": {
"test": "npx ava",
"demo": "npx @11ty/eleventy --input=sample --output=sample/_site --config=sample/.eleventy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-navigation.git"
},
"bugs": {
"url": "https://github.com/11ty/eleventy-navigation/issues"
},
"homepage": "https://www.11ty.dev/docs/plugins/navigation/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"license": "MIT",
"11ty": {
"compatibility": ">=0.7 || >=1.0.0-canary"
},
"devDependencies": {
"ava": "^3.15.0"
},
"dependencies": {
"dependency-graph": "^0.11.0"
},
"ava": {
"files": [
"./test/*.js"
],
"ignoredByWatcher": [
"./*.js"
]
}
}