scratch – Diff between revs 75 and 125

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 75 Rev 125
1 { 1 {
2 "name": "yamljs", 2 "name": "yamljs",
3 "version": "0.2.8", 3 "version": "0.3.0",
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.", 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": [ 5 "keywords": [
6 "yaml", 6 "yaml",
7 "json", 7 "json",
8 "yaml2json", 8 "yaml2json",
9 "json2yaml" 9 "json2yaml"
10 ], 10 ],
11 "author": "Jeremy Faivre <contact@jeremyfa.com>", 11 "author": "Jeremy Faivre <contact@jeremyfa.com>",
12 "main": "./lib/Yaml.js", 12 "main": "./lib/Yaml.js",
13 "dependencies": { 13 "dependencies": {
14 "argparse": "^1.0.7", 14 "argparse": "^1.0.7",
15 "glob": "^7.0.5" 15 "glob": "^7.0.5"
16 }, 16 },
17 "devDependencies": { 17 "devDependencies": {
18 "benchmark": "^2.1.0", 18 "benchmark": "^2.1.0",
19 "coffeeify": "^2.0.1", 19 "coffeeify": "^2.0.1",
20 "jasmine-node": "^1.14.5" 20 "jasmine-node": "^1.14.5"
21 }, 21 },
22 "bin": { 22 "bin": {
23 "yaml2json": "./bin/yaml2json", 23 "yaml2json": "./bin/yaml2json",
24 "json2yaml": "./bin/json2yaml" 24 "json2yaml": "./bin/json2yaml"
25 }, 25 },
26 "scripts": { 26 "scripts": {
27 "test": "cake build; cake test" 27 "test": "cake build; cake test"
28 }, 28 },
29 "license": "MIT", 29 "license": "MIT",
30 "repository": { 30 "repository": {
31 "type": "git", 31 "type": "git",
32 "url": "git://github.com/jeremyfa/yaml.js.git" 32 "url": "git://github.com/jeremyfa/yaml.js.git"
33 } 33 }
34 } 34 }
35   35