From 4de252010900a1aa47bdc66440c390714fb692c1 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 14 Jul 2014 13:16:14 -0600 Subject: [PATCH] Add packages required to build the library to dependencies This allows other packages to depend on the ol3 package and get the build tools (devDependencies are not installed when they are transitive dependencies). The justification here is that the ol3 package becomes useful to other packages when you are able to run the build.js task. For this task to run all of its dependencies must be available. --- package.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index dafb9c3a3b..7c69996d6e 100644 --- a/package.json +++ b/package.json @@ -17,24 +17,24 @@ }, "dependencies": { "async": "~0.2.10", - "htmlparser2": "~3.7.1" + "closure-util": "0.19.0", + "fs-extra": "~0.8.1", + "graceful-fs": "~3.0.2", + "htmlparser2": "~3.7.1", + "jsdoc": "~3.3.0-alpha9", + "nomnom": "~1.6.2", + "temp": "~0.7.0", + "walk": "~2.3.3" }, "devDependencies": { "clean-css": "^2.2.7", - "closure-util": "0.19.0", "expect.js": "~0.3.1", - "fs-extra": "~0.8.1", - "graceful-fs": "~3.0.2", "jquery": "~2.1.1", - "jsdoc": "~3.3.0-alpha9", "jshint": "~2.5.1", "mocha": "~1.20.1", "mocha-phantomjs": "~3.5.0", - "nomnom": "~1.6.2", "phantomjs": "~1.9.7-5", "proj4": "~2.2.1", - "sinon": "~1.10.2", - "temp": "~0.7.0", - "walk": "~2.3.3" + "sinon": "~1.10.2" } }