From acda56210ba785fdef41f5acdab34aa708f3631f Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 17 Oct 2013 09:58:55 +0800 Subject: [PATCH] Specify the version instead of using "*" for dependencies in package.json. --- package.json | 20 ++++++++++---------- script/bootstrap.py | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index e135ddbc44de..31c0bbef8dad 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,16 @@ { - "name" : "atom", - "version" : "0.1.0", + "name" : "atom-shell", + "version" : "0.6.2", - "dependencies": { - "coffee-script": "1.6.2", + "devDependencies": { + "coffee-script": "~1.6.3", + "coffeelint": "~0.6.1", + "mocha": "~1.13.0", + "walkdir": "~0.0.7", - "mocha": "*", - "walkdir": "*", - "unzip": "*", - "d3": "*", - "int64-native": "*", - "coffeelint": "*" + "unzip": "~0.1.9", + "d3": "~3.3.8", + "int64-native": "~0.2.0" }, "private": true, diff --git a/script/bootstrap.py b/script/bootstrap.py index 6b10e9bc18c5..4ee47787effe 100755 --- a/script/bootstrap.py +++ b/script/bootstrap.py @@ -66,7 +66,7 @@ def update_apm(): def update_node_modules(): - for dirname in ['.', 'browser/default_app', 'spec']: + for dirname in ['browser/default_app', '.']: update_node_modules_for_dir(dirname)