Skip to content

Instantly share code, notes, and snippets.

@dylanized
Last active December 16, 2015 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dylanized/5392682 to your computer and use it in GitHub Desktop.
Save dylanized/5392682 to your computer and use it in GitHub Desktop.
Example of Sails.js package.json file with JamJS dependencies
{
"name": "sailsplus",
"private": true,
"version": "0.0.0",
"description": "a Sails application boilerplate",
"dependencies": {
"sails": "0.8.894",
"jam": null,
"moment": null
},
"jam": {
"packageDir": "public/lib",
"baseUrl": "public",
"dependencies": {
"jquery": null,
"modernizr": null,
"postal": null,
"moment": null,
"hammer": null,
"knockout": null,
"knockout.mapping": null,
"ko.extenders.store": null
}
},
"scripts": {
"start": "node .app.js",
"debug": "node debug .app.js"
},
"main": ".app.js",
"repository": "",
"author": "",
"license": "MIT"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment