-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 940 Bytes
/
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
{
"name": "@11ty/eleventy-plugin-bundle",
"version": "0.0.1",
"description": "Little bundles of code, little bundles of joy.",
"main": "eleventy.config.js",
"scripts": {
"sample": "npx @11ty/eleventy --config=sample/sample-config.js --input=sample",
"test": "npx ava"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"11ty": {
"compatibility": ">=2.0.0-beta.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"ava": {
"failFast": true,
"files": [
"test/*.js"
],
"ignoredByWatcher": [
"**/_site/**",
".cache"
]
},
"devDependencies": {
"@11ty/eleventy": "2.0.0-beta.2",
"ava": "^5.1.0"
},
"dependencies": {
"debug": "^4.3.4"
}
}