forked from peruvianidol/11ty-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 988 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
{
"name": "11ty-recipes",
"version": "1.0.0",
"description": "There's a ton of great Eleventy starter kits out there but they're pretty opinionated about their features and dependencies. 11ty.recipies helps you build an Eleventy site from scratch, showing you how to add individual features like a SASS pipeline or image sprite generation.",
"main": ".eleventy.js",
"scripts": {
"start": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peruvianidol/11ty-recipes.git"
},
"keywords": [],
"author": "Mike Aparicio <[email protected]> (http://mikeaparicio.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/peruvianidol/11ty-recipes/issues"
},
"homepage": "https://github.com/peruvianidol/11ty-recipes#readme",
"dependencies": {
"@11ty/eleventy": "^0.11.0"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1"
}
}