forked from 11ty/eleventy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.59 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
112
113
114
115
116
117
118
{
"name": "@11ty/eleventy",
"version": "0.8.3",
"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": "npm run test",
"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"
},
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy.git"
},
"ava": {
"files": [
"test/*.js"
],
"sources": [
"**/.eleventyignore",
"src/**/*.js",
"test/stubs/**"
]
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.1",
"ava": "^1.4.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"markdown-it-emoji": "^1.4.0",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"viperhtml": "^2.17.0",
"vue": "^2.6.10",
"vue-server-renderer": "^2.6.10"
},
"dependencies": {
"browser-sync": "^2.26.3",
"chalk": "^2.4.2",
"chokidar": "^2.1.5",
"debug": "^4.1.1",
"dependency-graph": "^0.8.0",
"dependency-tree": "^6.3.0",
"ejs": "^2.6.1",
"fast-glob": "^2.2.6",
"fs-extra": "^7.0.1",
"gray-matter": "^4.0.2",
"hamljs": "^0.6.2",
"handlebars": "^4.1.1",
"javascript-stringify": "^2.0.0",
"liquidjs": "^6.4.3",
"lodash": "^4.17.11",
"luxon": "^1.12.0",
"markdown-it": "^8.4.2",
"minimist": "^1.2.0",
"moo": "^0.5.0",
"multimatch": "^3.0.0",
"mustache": "^2.3.0",
"normalize-path": "^3.0.0",
"nunjucks": "^3.2.0",
"parse-filepath": "^1.0.2",
"please-upgrade-node": "^3.1.1",
"pretty": "^2.0.0",
"pug": "^2.0.3",
"recursive-copy": "^2.0.10",
"semver": "^6.0.0",
"slugify": "^1.3.4",
"time-require": "^0.1.2",
"valid-url": "^1.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npx ava"
}
}
}