From 24a5adc8983249915b2a535264952361352dff94 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 23 Jul 2010 11:06:17 -0700 Subject: [PATCH] updating package.json to work better with NPM. Issue #522 --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index f80f2aa3..15207ff3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "coffee-script", "description": "Unfancy JavaScript", - "keywords": ["javascript", "language"], + "keywords": ["javascript", "language", "coffeescript", "compiler"], "author": "Jeremy Ashkenas", "version": "0.7.2", "licenses": [{ @@ -11,7 +11,8 @@ "engines": { "node": ">=0.1.99" }, - "scripts": { - "install": "bin/cake install" + "bin": { + "coffee": "./bin/coffee", + "cake": "./bin/cake" } }