summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/promzard/example/substack-input.js
blob: c049c20f9a2736186cce57e064af0cdf42fb7ca3 (plain)
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
module.exports = {
    "name" : basename.replace(/^node-/, ''),
    "version" : "0.0.0",
    "description" : (function (cb) {
        var fs = require('fs');
        var value;
        try {
            var src = fs.readFileSync('README.markdown', 'utf8');
            value = src.split('\n').filter(function (line) {
                return /\s+/.test(line)
                    && line.trim() !== basename.replace(/^node-/, '')
                ;
            })[0]
                .trim()
                .replace(/^./, function (c) { return c.toLowerCase() })
                .replace(/\.$/, '')
            ;
        }
        catch (e) {}

        return prompt('description', value);
    })(),
    "main" : prompt('entry point', 'index.js'),
    "bin" : function (cb) {
        var path = require('path');
        var fs = require('fs');
        var exists = fs.exists || path.exists;
        exists('bin/cmd.js', function (ex) {
            var bin
            if (ex) {
                var bin = {}
                bin[basename.replace(/^node-/, '')] = 'bin/cmd.js'
            }
            cb(null, bin);
        });
    },
    "directories" : {
        "example" : "example",
        "test" : "test"
    },
    "dependencies" : {},
    "devDependencies" : {
        "tap" : "~0.2.5"
    },
    "scripts" : {
        "test" : "tap test/*.js"
    },
    "repository" : {
        "type" : "git",
        "url" : "git://github.com/substack/" + basename + ".git"
    },
    "homepage" : "https://github.com/substack/" + basename,
    "keywords" : prompt(function (s) { return s.split(/\s+/) }),
    "author" : {
        "name" : "James Halliday",
        "email" : "mail@substack.net",
        "url" : "http://substack.net"
    },
    "license" : "MIT",
    "engine" : { "node" : ">=0.6" }
}