Created
February 17, 2014 04:03
-
-
Save mattmccray/9044533 to your computer and use it in GitHub Desktop.
TOML vs JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "ogre-js-docs", | |
| "version": "0.1.0", | |
| "description": "Docs for ogre.js", | |
| "main": "server.js", | |
| "scripts": { | |
| "start": "node server.js", | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "Matt McCray <[email protected]>", | |
| "license": "MIT", | |
| "dependencies": { | |
| "stop": "~2.1.2", | |
| "express": "~3.4.8" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name= "ogre-js-docs" | |
| version= "0.1.0" | |
| description= "Docs for ogre.js" | |
| main= "server.js" | |
| author= "Matt McCray <[email protected]>" | |
| license= "MIT" | |
| [scripts] | |
| start= "node server.js", | |
| test= "echo \"Error: no test specified\" && exit 1" | |
| [dependencies] | |
| stop= "~2.1.2" | |
| express= "~3.4.8" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't know about you, but man I'd rather use TOML for config files than JSON.