forked from metalsmith/metalsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "metalsmith",
"version": "2.3.0",
"license": "MIT",
"repository": "git://github.com/segmentio/metalsmith.git",
"description": "An extremely simple, pluggable static site generator.",
"bin": {
"metalsmith": "bin/metalsmith",
"_metalsmith": "bin/_metalsmith"
},
"scripts": {
"pretest": "npm install",
"test": "mocha $HARMONY_OPTS",
"pretest-debug": "npm install",
"test-debug": "mocha debug",
"precoverage": "npm install",
"coverage": "node $HARMONY_OPTS ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info"
},
"dependencies": {
"absolute": "0.0.1",
"chalk": "^1.1.3",
"clone": "^1.0.2",
"co-fs-extra": "^1.2.1",
"commander": "^2.6.0",
"gray-matter": "^2.1.0",
"has-generators": "^1.0.1",
"is": "^3.1.0",
"is-utf8": "~0.2.0",
"recursive-readdir": "^2.1.0",
"rimraf": "^2.2.8",
"stat-mode": "^0.2.0",
"thunkify": "^2.1.2",
"unyield": "0.0.1",
"ware": "^1.2.0",
"win-fork": "^1.1.1"
},
"devDependencies": {
"assert-dir-equal": "~1.0.1",
"co-mocha": "^1.0.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.1",
"metalsmith-drafts": "0.0.1",
"metalsmith-markdown": "0.2.1",
"mocha": "^3.0.2"
},
"keywords": [
"static",
"file",
"site",
"website",
"blog",
"generator",
"markdown",
"jekyll",
"wintersmith",
"blacksmith"
]
}