scratch – Blame information for rev 125

Subversion Repositories:
Rev:
Rev Author Line No. Line
75 office 1 {
2 "name": "yamljs",
125 office 3 "version": "0.3.0",
75 office 4 "description": "Standalone JavaScript YAML 1.2 Parser & Encoder. Works under node.js and all major browsers. Also brings command line YAML/JSON conversion tools.",
5 "keywords": [
6 "yaml",
7 "json",
8 "yaml2json",
9 "json2yaml"
10 ],
11 "author": "Jeremy Faivre <contact@jeremyfa.com>",
12 "main": "./lib/Yaml.js",
13 "dependencies": {
14 "argparse": "^1.0.7",
15 "glob": "^7.0.5"
16 },
17 "devDependencies": {
18 "benchmark": "^2.1.0",
19 "coffeeify": "^2.0.1",
20 "jasmine-node": "^1.14.5"
21 },
22 "bin": {
23 "yaml2json": "./bin/yaml2json",
24 "json2yaml": "./bin/json2yaml"
25 },
26 "scripts": {
27 "test": "cake build; cake test"
28 },
29 "license": "MIT",
30 "repository": {
31 "type": "git",
32 "url": "git://github.com/jeremyfa/yaml.js.git"
33 }
34 }