From f8e6fac90e6fdf4b07a9ce0fdfade4aeff3ae980 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Wed, 30 Apr 2014 17:54:39 -0600 Subject: [PATCH] Modules used in postinstall are dependencies Since async and htmlparser2 are used by the postinstall task, they need to be listed as dependencies. These will get installed when ol3 is a dependency of another project. --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c45c4e44c4..45791c4c74 100644 --- a/package.json +++ b/package.json @@ -14,10 +14,12 @@ "bugs": { "url": "https://github.com/openlayers/ol3/issues" }, + "dependencies": { + "async": "~0.2.10", + "htmlparser2": "~3.7.1" + }, "devDependencies": { "closure-util": "~0.11.0", - "async": "~0.2.10", - "htmlparser2": "~3.7.1", "jshint": "~2.4.4", "jsdoc": "~3.3.0-alpha5", "walk": "~2.3.1",