require needed packages for embark; cleanup boilerplate package

This commit is contained in:
Iuri Matias 2015-06-09 08:22:18 -04:00
parent 7447d1fd3a
commit 31fdc58cfe
3 changed files with 13 additions and 11 deletions

View File

@ -10,10 +10,7 @@
"license": "ISC",
"homepage": "",
"devDependencies": {
"embark-framework": "^0.2.1",
"commander": "^2.8.1",
"compression": "^1.4.3",
"express": "^4.12.3",
"embark-framework": "/Users/iurimatias/Projects/embark-framework",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.13.0",
"grunt-contrib-concat": "^0.5.1",
@ -22,12 +19,6 @@
"grunt-contrib-watch": "^0.6.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"matchdep": "^0.3.0",
"read-yaml": "^1.0.0",
"shelljs": "^0.4.0",
"string": "^3.1.1",
"web3": "^0.5.0",
"wrench": "^1.5.8",
"hashmerge": "^1.0.2"
"matchdep": "^0.3.0"
}
}

10
index.js Normal file
View File

@ -0,0 +1,10 @@
var hashmerge = require('hashmerge');
var readYaml = require('read-yaml');
var shelljs = require('shelljs');
var shelljs_global = require('shelljs/global');
var web3 = require('web3');
var express = require('express');
var compression = require('compression');
var commander = require('commander');
var wrench = require('wrench');
console.log("dude!!!");

View File

@ -8,6 +8,7 @@
"bin": {
"embark": "./bin/embark"
},
"main": "./index.js",
"dependencies": {
"commander": "^2.8.1",
"compression": "^1.4.3",