forked from docpad/docpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·98 lines (98 loc) · 3.27 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
{
"name": "docpad",
"version": "6.20.1",
"description": "DocPad is a language agnostic document management system. This means you write your website as documents, in whatever language you wish, and DocPad will handle the compiling, templates and layouts for you. For static documents it will generate static files, for dynamic documents it'll re-render them on each request. You can utilise DocPad by itself, or use it as a module your own custom system. It's pretty cool, and well worth checking out. We love it.",
"homepage": "https://github.com/bevry/docpad",
"installUrl": "http://docpad.org/install",
"upgradeUrl": "http://docpad.org/upgrade",
"keywords": [
"document management system", "dms",
"content management system", "cms",
"static site generator", "generator",
"static file server", "server",
"web",
"web framework", "framework",
"web development", "development", "dev",
"build and deployment", "builder", "build",
"compiler", "compile",
"parser", "parse",
"renderer", "render",
"templating", "templates",
"language agnostic",
"website", "blog",
"cli", "tool", "utility",
"scaffold"
],
"author": "Bevry Pty Ltd <[email protected]> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)",
"Nick Crohn <[email protected]> (https://github.com/ncrohn)",
"eldios <[email protected]> (https://github.com/eldios)",
"Changwoo Park <[email protected]> (https://github.com/pismute)",
"Bruno Héridet (https://github.com/Delapouite)",
"Todd Anglin (https://github.com/toddanglin)",
"Olivier Bazoud (https://github.com/obazoud)",
"Zhao Lei <[email protected]> (https://github.com/firede)",
"Aaron Powell <[email protected]> (https://github.com/aaronpowell)",
"Andrew Patton <[email protected]> (https://github.com/acusti)",
"Paul Armstrong <[email protected]> (https://github.com/paularmstrong)",
"Sorin Ionescu <[email protected]> (https://github.com/sorin-ionescu)",
"Ferrari Lee <[email protected]> (https://github.com/Ferrari)",
"Ben Barber (https://github.com/barberboy)",
"Luke Hagan (https://github.com/lhagan)",
"Vladislav Botvin <[email protected]> (https://github.com/darrrk)",
"Ashnur (https://github.com/ashnur)",
"Sven Vetsch (https://github.com/disenchant)"
],
"bugs": {
"url": "https://github.com/bevry/docpad/issues"
},
"repository" : {
"type": "git",
"url": "http://github.com/bevry/docpad.git"
},
"engines" : {
"node": ">=0.6.0",
"npm": ">=1.1.0"
},
"dependencies": {
"bal-util": "~1.15.2",
"caterpillar": "1.1.x",
"commander": "1.1.x",
"cson": "1.4.x",
"express": "3.0.x",
"mime": "1.2.x",
"query-engine": "1.5.x",
"semver": "1.1.x",
"underscore": "1.4.x",
"backbone": "0.9.9",
"watchr": "2.3.x",
"yamljs": "0.1.x"
},
"optionalDependencies": {
"airbrake": "0.2.x",
"growl": "1.6.x",
"mixpanel": "0.0.10"
},
"devDependencies": {
"coffee-script": "1.4.x",
"chai": "1.4.x",
"joe": "1.1.x",
"request": "2.12.x"
},
"directories": {
"lib": "./out/lib"
},
"bin": {
"docpad": "./bin/docpad",
"docpad-debug": "./bin/docpad-debug",
"docpad-server": "./bin/docpad-server"
},
"scripts": {
"test": "node ./out/test/everything.test.js"
},
"main": "./out/main.js"
}