mirror of https://github.com/embarklabs/embark.git
80 lines
1.7 KiB
JSON
80 lines
1.7 KiB
JSON
{
|
|
"name": "embark",
|
|
"version": "2.5.1",
|
|
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
|
|
"scripts": {
|
|
"test": "grunt jshint && mocha test/ --no-timeouts"
|
|
},
|
|
"bin": {
|
|
"embark": "./bin/embark"
|
|
},
|
|
"main": "./lib/index.js",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iurimatias/embark-framework.git"
|
|
},
|
|
"dependencies": {
|
|
"async": "^2.0.1",
|
|
"blessed": "^0.1.81",
|
|
"chokidar": "^1.6.0",
|
|
"colors": "^1.1.2",
|
|
"commander": "^2.8.1",
|
|
"finalhandler": "^0.5.0",
|
|
"fs-extra": "^2.0.0",
|
|
"globule": "^1.1.0",
|
|
"merge": "^1.2.0",
|
|
"promptly": "^2.1.0",
|
|
"serve-static": "^1.11.1",
|
|
"shelljs": "^0.5.0",
|
|
"solc": "0.4.11",
|
|
"toposort": "^1.0.0",
|
|
"underscore": "^1.8.3",
|
|
"underscore.string": "^3.3.4",
|
|
"web3": "^0.19.1"
|
|
},
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"keywords": [
|
|
"ethereum",
|
|
"dapps",
|
|
"ipfs",
|
|
"orbit",
|
|
"solidity",
|
|
"solc",
|
|
"blockchain",
|
|
"serverless"
|
|
],
|
|
"homepage": "https://github.com/iurimatias/embark-framework",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"grunt": "^1.0.1",
|
|
"grunt-cli": "^1.2.0",
|
|
"grunt-contrib-clean": "^1.0.0",
|
|
"grunt-contrib-coffee": "^1.0.0",
|
|
"grunt-contrib-jshint": "^1.0.0",
|
|
"grunt-mocha-test": "^0.13.2",
|
|
"matchdep": "^1.0.1",
|
|
"mocha": "^3.2.0",
|
|
"mocha-sinon": "^1.1.4",
|
|
"sinon": "^1.15.4",
|
|
"toposort": "^1.0.0"
|
|
},
|
|
"jshintConfig": {
|
|
"indent": 2,
|
|
"white": true,
|
|
"node": true,
|
|
"undef": true,
|
|
"-W058": true,
|
|
"-W014": true,
|
|
"expr": true,
|
|
"esversion": 6,
|
|
"unused": false,
|
|
"globals": {
|
|
"node": true
|
|
}
|
|
}
|
|
}
|