2015-05-24 08:38:56 -04:00
|
|
|
{
|
2016-10-18 05:48:47 -04:00
|
|
|
"name": "embark",
|
2017-07-25 07:31:24 -04:00
|
|
|
"version": "2.5.2",
|
2016-10-02 19:01:10 -04:00
|
|
|
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
|
2015-05-24 08:38:56 -04:00
|
|
|
"scripts": {
|
2016-10-22 18:23:44 -04:00
|
|
|
"test": "grunt jshint && mocha test/ --no-timeouts"
|
2015-05-24 08:38:56 -04:00
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"embark": "./bin/embark"
|
|
|
|
},
|
2015-06-27 22:20:07 -04:00
|
|
|
"main": "./lib/index.js",
|
2015-06-09 07:57:19 -04:00
|
|
|
"directories": {
|
|
|
|
"lib": "./lib"
|
|
|
|
},
|
2017-01-13 19:17:01 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/iurimatias/embark-framework.git"
|
|
|
|
},
|
2015-05-24 08:38:56 -04:00
|
|
|
"dependencies": {
|
2016-08-13 10:48:00 -04:00
|
|
|
"async": "^2.0.1",
|
2016-09-16 23:56:25 -04:00
|
|
|
"blessed": "^0.1.81",
|
2016-08-14 12:26:49 -04:00
|
|
|
"chokidar": "^1.6.0",
|
2016-08-14 11:10:34 -04:00
|
|
|
"colors": "^1.1.2",
|
2015-05-24 08:38:56 -04:00
|
|
|
"commander": "^2.8.1",
|
2016-08-14 11:10:34 -04:00
|
|
|
"finalhandler": "^0.5.0",
|
2017-02-18 22:40:42 -05:00
|
|
|
"fs-extra": "^2.0.0",
|
2017-02-19 08:59:51 -05:00
|
|
|
"globule": "^1.1.0",
|
2016-10-15 15:54:19 -04:00
|
|
|
"merge": "^1.2.0",
|
2017-03-09 20:07:24 +09:00
|
|
|
"promptly": "^2.1.0",
|
2016-08-14 11:10:34 -04:00
|
|
|
"serve-static": "^1.11.1",
|
2017-01-15 08:52:23 -05:00
|
|
|
"shelljs": "^0.5.0",
|
2017-06-02 21:20:27 -04:00
|
|
|
"solc": "0.4.11",
|
2017-01-13 19:17:01 -05:00
|
|
|
"toposort": "^1.0.0",
|
2017-03-30 00:37:30 +09:00
|
|
|
"underscore": "^1.8.3",
|
|
|
|
"underscore.string": "^3.3.4",
|
2017-06-25 13:04:02 +01:00
|
|
|
"web3": "^0.19.1"
|
2015-05-24 08:38:56 -04:00
|
|
|
},
|
|
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
|
|
"contributors": [],
|
2017-01-13 19:17:01 -05:00
|
|
|
"keywords": [
|
|
|
|
"ethereum",
|
|
|
|
"dapps",
|
|
|
|
"ipfs",
|
|
|
|
"orbit",
|
|
|
|
"solidity",
|
|
|
|
"solc",
|
|
|
|
"blockchain",
|
|
|
|
"serverless"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/iurimatias/embark-framework",
|
|
|
|
"license": "MIT",
|
2015-06-27 22:20:07 -04:00
|
|
|
"devDependencies": {
|
2017-02-19 00:00:01 -05:00
|
|
|
"grunt": "^1.0.1",
|
2017-01-13 19:17:01 -05:00
|
|
|
"grunt-cli": "^1.2.0",
|
2017-03-09 20:07:24 +09:00
|
|
|
"grunt-contrib-clean": "^1.0.0",
|
|
|
|
"grunt-contrib-coffee": "^1.0.0",
|
2016-10-22 17:22:58 -04:00
|
|
|
"grunt-contrib-jshint": "^1.0.0",
|
2017-01-13 19:17:01 -05:00
|
|
|
"grunt-mocha-test": "^0.13.2",
|
2016-10-22 17:22:58 -04:00
|
|
|
"matchdep": "^1.0.1",
|
2017-01-13 19:17:01 -05:00
|
|
|
"mocha": "^3.2.0",
|
2015-06-28 16:11:42 -04:00
|
|
|
"mocha-sinon": "^1.1.4",
|
2016-09-27 00:55:35 -04:00
|
|
|
"sinon": "^1.15.4",
|
2017-01-13 19:17:01 -05:00
|
|
|
"toposort": "^1.0.0"
|
2017-03-30 00:37:30 +09:00
|
|
|
},
|
|
|
|
"jshintConfig": {
|
|
|
|
"indent": 2,
|
|
|
|
"white": true,
|
|
|
|
"node": true,
|
|
|
|
"undef": true,
|
|
|
|
"-W058": true,
|
|
|
|
"-W014": true,
|
|
|
|
"expr": true,
|
2017-03-30 02:18:00 +09:00
|
|
|
"esversion": 6,
|
2017-03-30 02:42:06 +09:00
|
|
|
"unused": false,
|
|
|
|
"globals": {
|
|
|
|
"node": true
|
|
|
|
}
|
2015-06-27 22:20:07 -04:00
|
|
|
}
|
2015-05-24 08:38:56 -04:00
|
|
|
}
|