Skip to content

Instantly share code, notes, and snippets.

@LetItRock
Created December 25, 2014 20:21
Show Gist options
  • Save LetItRock/e247d0b92ac3109b32a8 to your computer and use it in GitHub Desktop.
Save LetItRock/e247d0b92ac3109b32a8 to your computer and use it in GitHub Desktop.
This is simple package.json file for npm From http://codybonney.com/simple-package-json-file-for-npm/
{ "name": "json-lint-express", "preferGlobal": true, "version": "0.0.1", "author": "Cody Bonney <me@codybonney.com>", "description": "a simple web server that lints json strings", "license": "MIT", "engines": { "node": ">=0.10" }, "scripts": { "start": "node ./app.js" }, "dependencies": { "express": "~3.4.7", "json-lint": "~0.1.0" } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment