{
	"name": "easy-configuration",
	"description": "[ABANDONED] Simply extensible loader for json config files",
	"version": "2.0.2",
	"author": {
		"name": "David Kudera",
		"email": "kudera.d@gmail.com"
	},
	"keywords": [
		"config",
		"configurator",
		"configuration",
		"setup",
		"settings",
		"json"
	],
	"repository": {
		"type": "git",
		"url": "git@github.com:Carrooi/Node-EasyConfiguration.git"
	},
	"license": "MIT",
	"engines": {
		"node": "*"
	},
	"main": "./lib/EasyConfiguration.js",
	"dependencies": {
		"recursive-merge": "~1.2.0",
		"callsite": "~1.0.0"
	},
	"devDependencies": {
		"chai": "~1.8.0",
		"mocha": "~1.16.2",
		"mocha-phantomjs": "~3.3.1",
		"phantomjs": "~1.9.2-6"
	},
	"scripts": {
		"test": "npm run test-node && npm run test-browser",
		"build-and-test": "npm run test-build && npm run test",
		"test-build": "cd ./test/browser; simq build;",
		"test-node": "mocha ./test/node/index.js --reporter spec",
		"test-browser": "mocha-phantomjs ./test/browser/index.html"
	}
}

