summaryrefslogtreecommitdiff
path: root/package.json
blob: 84d24f4f25e05bfcd3d3a94d508876407c2f1913 (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
{
    "name": "yamljs",
    "version": "0.1.6",
    "description": "Standalone JavaScript YAML 1.2 Parser & Encoder. Works under node.js and all major browsers. Also brings command line YAML/JSON conversion tools.",
    "keywords": [
    "yaml", "json", "yaml2json", "json2yaml"
    ],
    "author": "Jeremy Faivre <contact@jeremyfa.com>",
    "main": "./bin/yaml.js",
    "dependencies": {
        "argparse": "~0.1.4",
        "glob": "~3.1.11"
    },
    "bin": {
        "yaml2json": "./bin/yaml2json",
        "json2yaml": "./bin/json2yaml"
    },
    "devDependencies": {
    },
    "repository": {
        "type": "git",
        "url": "git://github.com/jeremyfa/yaml.js.git"
    }
}