-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
52 lines (52 loc) · 1.06 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": "generator-jekyllized",
"version": "1.0.0-rc.8",
"main": "index.js",
"description": "A Yeoman generator for Jekyll to rapidly build sites using Gulp",
"keywords": [
"yeoman-generator",
"jekyll",
"static",
"static-site",
"website",
"web",
"scaffold",
"gulp"
],
"author": "Sondre Nilsen",
"repository": "sondr3/generator-jekyllized",
"license": "MIT",
"scripts": {
"test": "xo && nyc ava"
},
"files": [
"generators",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"chalk": "^1.1.0",
"generator-statisk": "^0.5.0",
"lodash": "^4.14.0",
"shelljs": "^0.7.0",
"yargs": "^4.8.1",
"yeoman-generator": "^0.24.1"
},
"devDependencies": {
"ava": "^0.15.2",
"coveralls": "^2.11.12",
"nyc": "^7.1.0",
"xo": "^0.16.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.1.0"
},
"xo": {
"space": true,
"ignores": [
"generators/app/templates/**",
"generators/gulp/templates/**",
"generators/jekyll/templates/**"
]
}
}