forked from 11ty/eleventy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@11ty/eleventy",
"version": "0.5.2",
"description": "Transform a directory of templates into HTML.",
"main": "src/Eleventy.js",
"license": "MIT",
"engines": {
"node": ">=8"
},
"keywords": [
"static-site-generator",
"static-site",
"ssg",
"documentation",
"website",
"jekyll",
"blog",
"templates",
"generator",
"framework",
"eleventy",
"11ty",
"html",
"markdown",
"liquid",
"nunjucks",
"pug",
"handlebars",
"mustache",
"ejs",
"haml"
],
"bin": {
"eleventy": "./cmd.js"
},
"scripts": {
"default": "cd playground && npx eleventy --input=. --output=_site",
"test": "npx nyc ava",
"coverage": "npm run test && npx nyc report --reporter=json-summary && cp coverage/coverage-summary.json docs-src/_data/coverage.json && node cmd.js --config=docs-src/.eleventy.docs.js",
"precommit": "lint-staged",
"prepush": "npx ava"
},
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy.git"
},
"ava": {
"files": [
"test/*.js"
],
"source": [
"**/.eleventyignore",
"src/**/*.js"
]
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"ava": "^0.25.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"markdown-it-emoji": "^1.4.0",
"nyc": "^12.0.2",
"prettier": "1.13.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^1.0.5"
},
"dependencies": {
"browser-sync": "^2.24.4",
"chalk": "^2.4.1",
"debug": "^3.1.0",
"ejs": "^2.6.1",
"fast-glob": "^2.2.2",
"fs-extra": "^6.0.1",
"glob-watcher": "^5.0.1",
"gray-matter": "^4.0.1",
"hamljs": "^0.6.2",
"handlebars": "^4.0.11",
"liquidjs": "^4.0.0",
"lodash.chunk": "^4.2.0",
"lodash.clone": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isobject": "^3.0.2",
"lodash.merge": "^4.6.1",
"lodash.set": "^4.3.2",
"lodash.uniq": "^4.5.0",
"luxon": "^1.3.0",
"markdown-it": "^8.4.1",
"minimist": "^1.2.0",
"multimatch": "^2.1.0",
"mustache": "^2.3.0",
"normalize-path": "^3.0.0",
"nunjucks": "^3.1.3",
"parse-filepath": "^1.0.2",
"please-upgrade-node": "^3.1.1",
"pretty": "^2.0.0",
"pug": "^2.0.3",
"semver": "^5.5.0",
"slugify": "^1.3.0",
"time-require": "^0.1.2",
"valid-url": "^1.0.9"
}
}