From c5f15b1921e0aad75a27bb12133ca26d0da8842b Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 21 Aug 2016 01:44:50 +0300 Subject: [PATCH] minor tweaks... Signed-off-by: Alex A. Naanou --- actions.js | 3 ++- features.js | 10 +++++++--- package.json | 11 +++++++---- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/actions.js b/actions.js index c7f30fa..63eff2b 100755 --- a/actions.js +++ b/actions.js @@ -7,7 +7,7 @@ function(require){ var module={} // makes module AMD/node compatible... /*********************************************************************/ -var object = require('object') +var object = require('ig-object') @@ -16,6 +16,7 @@ var object = require('object') var args2array = function(a){ return [].slice.call(a) } + /*********************************************************************/ // Actions // diff --git a/features.js b/features.js index bd4b46c..0113750 100755 --- a/features.js +++ b/features.js @@ -7,10 +7,14 @@ function(require){ var module={} // makes module AMD/node compatible... /*********************************************************************/ -var args2array = require('lib/util').args2array +var object = require('ig-object') +var actions = require('actions') -var actions = require('lib/actions') -var object = require('lib/object') + + +/*********************************************************************/ + +var args2array = function(a){ return [].slice.call(a) } diff --git a/package.json b/package.json index 4ae290b..1ec1bd8 100755 --- a/package.json +++ b/package.json @@ -1,16 +1,16 @@ { - "name": "features", + "name": "ig-features", "version": "1.0.0", "description": "", "main": "features.js", "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/flynx/features.js.git" }, "keywords": [ - "js", "javascript", "oop", "meta-programming", @@ -19,7 +19,10 @@ "author": "Alex A. Naanou (https://github.com/flynx)", "license": "BSD-3-Clause", "bugs": { - "url": "https://github.com/flynx/features/issues" + "url": "https://github.com/flynx/features.js/issues" }, - "homepage": "https://github.com/flynx/features#readme" + "homepage": "https://github.com/flynx/features.js#readme", + "dependencies": { + "ig-object": "^1.0.0" + } }