Here's an instance of the package.json file that express.js generates

{
    "name": "packagename",
    "version": "0.0.1",
    "private": true,
    "dependencies": {
        "express": "2.5.5",
        "stylus": "0.22.2"
    }
}

It's fairly obvious that I can add packages to the dependencies object. However I have no idea what "private": true means. Nor do I know what syntax I can use in the dependencies value fields. I've Googled for quite a while without discovering anything.

What I'm wondering is pretty much if a complete summary of all settings that the package.json file can contain exists, as I could not find one. I haven't checked man since I'm on a windows PC.

Thanks

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You're looking for the output of npm help json. It is available in Markdown format on NPM's GitHub project.

link|improve this answer
feedback

Besides the official guide for package.json from NPM, the guys from Nodejitsu made a nice cheatsheet for it: http://package.json.nodejitsu.com/

link|improve this answer
1  
That is pretty cool! – Brandon Tilley Jan 9 at 17:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.