From 0c88d075019913b0c8902bf801174640305887a0 Mon Sep 17 00:00:00 2001 From: Robert Bradley <7204286+robertbradleyux@users.noreply.github.com> Date: Wed, 10 Jan 2018 14:36:29 -0500 Subject: [PATCH 1/2] Add run-time dependencies The run-time dependencies when pulled in through NPM do not match the run-time dependencies listed in the Bower package. This means that when using NPM for dependency management the package's dependencies will not be pulled in. This update simply makes the dependencies in package.json match those of bower.json. --- package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index bb36f2c..3a7ef01 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,11 @@ "license": "MIT", "homepage": "http://angular-ui.github.com", "main": "./src/sortable.js", - "dependencies": {}, + "dependencies": { + "angular": ">=1.2.x", + "jquery": ">=3.1.x", + "jquery-ui": ">=1.12.x" + }, "devDependencies": { "angular-ui-publisher": "1.2.x", "grunt": "~0.4.x", From 22ba7f363de2907c2b35c037cc5c7bddf24f02db Mon Sep 17 00:00:00 2001 From: Robert Bradley <7204286+robertbradleyux@users.noreply.github.com> Date: Wed, 10 Jan 2018 14:56:15 -0500 Subject: [PATCH 2/2] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3a7ef01..299e17c 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "dependencies": { "angular": ">=1.2.x", "jquery": ">=3.1.x", - "jquery-ui": ">=1.12.x" + "jquery-ui-dist": ">=1.12.x" }, "devDependencies": { "angular-ui-publisher": "1.2.x",