-
Notifications
You must be signed in to change notification settings - Fork 335
/
package.json
53 lines (53 loc) · 1.09 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
{
"name": "wintersmith",
"version": "2.5.0",
"author": "Johan Nordberg <[email protected]>",
"description": "A flexible static site generator.",
"license": "MIT",
"main": "./lib/",
"keywords": [
"static",
"generator",
"markdown",
"pug"
],
"bin": {
"wintersmith": "./bin/wintersmith"
},
"scripts": {
"prepublishOnly": "node ./bin/dev/compile_coffee"
},
"directories": {
"lib": "./lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/jnordberg/wintersmith.git"
},
"dependencies": {
"async": "^2.6.1",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"coffee-script": "^1.12.7",
"highlight.js": "^9.13.1",
"js-yaml": "^3.12.0",
"marked": "^0.5.1",
"mime": "^2.3.1",
"minimatch": "^3.0.3",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"npm": "^6.4.1",
"pug": "^2.0.3",
"rimraf": "^2.6.2",
"server-destroy": "^1.0.1",
"slugg": "^1.2.1",
"winston": "^3.1.0"
},
"devDependencies": {
"shelljs": "^0.8.3"
},
"engine": {
"node": ">=4"
}
}