forked from rgrove/selleck
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (41 loc) · 1.32 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
{
"name" : "selleck",
"description": "Generator for YUI's Handlebars-based user documentation.",
"version" : "0.1.18",
"homepage" : "http://yui.github.com/selleck/",
"author" : "Ryan Grove <ryan@wonko.com> (http://wonko.com/)",
"copyright" : "Copyright (c) 2012 Yahoo! Inc. All rights reserved.",
"bugs": { "url" : "http://github.com/yui/selleck/issues" },
"contributors": [
{ "name": "Dav Glass", "email": "davglass@gmail.com" }
],
"keywords" : ["yui", "handlebars", "mustache", "docs", "documentation"],
"licenses": [
{"type": "BSD", "url": "http://yuilibrary.com/license/"}
],
"repository": {
"type": "git",
"url" : "git://github.com/yui/selleck.git"
},
"engines": [
"node >=0.4",
"npm >=1.0.0"
],
"dependencies": {
"express" : "~3.1.0",
"graceful-fs": "~1.2",
"cpr": "~0.0.2"
},
"devDependencies": {
"yui-lint": "~0.1.1",
"jshint": "~0.9.0",
"vows": "*"
},
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./package.json ./lib/*.js ./lib/*/*.js ./bin/selleck",
"test": "vows --spec ./tests/*.js"
},
"main": "index",
"bin" : {"selleck": "./bin/selleck"},
"preferGlobal": true
}