embark-area-51/package.json

94 lines
2.4 KiB
JSON
Raw Normal View History

2015-05-24 08:38:56 -04:00
{
"name": "embark",
"version": "2.7.0",
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": {
2017-12-14 10:26:39 -05:00
"lint": "./node_modules/.bin/eslint lib/",
2017-12-14 10:12:14 -05:00
"test": "mocha test/ --no-timeouts",
"testdapp": "cd test_app/ && npm install && ../bin/embark test",
2017-12-28 07:11:08 -05:00
"fulltest": "npm run lint && npm run test && npm run testdapp"
2015-05-24 08:38:56 -04:00
},
"bin": {
"embark": "./bin/embark"
},
"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",
2018-01-16 19:17:52 -05:00
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-react": "^6.24.1",
"babel-plugin-webpack-aliases": "^1.1.3",
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",
2017-12-07 15:27:03 -05:00
"css-loader": "^0.28.7",
2017-10-13 20:01:35 -04:00
"ejs": "^2.5.7",
2017-12-22 13:07:43 -05:00
"ethereumjs-testrpc": "^6.0.3",
2017-12-13 19:24:20 -05:00
"file-loader": "^1.1.5",
2016-08-14 11:10:34 -04:00
"finalhandler": "^0.5.0",
"follow-redirects": "^1.2.4",
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",
2017-12-17 18:34:41 -05:00
"http-shutdown": "^1.2.0",
2017-12-13 10:59:53 -05:00
"ipfs-api": "17.2.4",
"klaw": "^2.1.1",
"merge": "^1.2.0",
"mocha": "^2.2.5",
"orbit-db": "^0.17.3",
"parse-json": "^4.0.0",
"promptly": "^2.1.0",
2017-12-19 13:29:48 -05:00
"propose": "0.0.5",
2016-08-14 11:10:34 -04:00
"serve-static": "^1.11.1",
"shelljs": "^0.5.0",
"solc": "0.4.17",
"solidity-parser": "^0.4.0",
2017-12-07 15:27:03 -05:00
"style-loader": "^0.19.0",
"tar": "^3.1.5",
2017-01-13 19:17:01 -05:00
"toposort": "^1.0.0",
"underscore": "^1.8.3",
"underscore.string": "^3.3.4",
2017-12-13 19:24:20 -05:00
"url-loader": "^0.6.2",
"viz.js": "^1.8.1",
2018-01-05 15:10:47 -05:00
"web3": "1.0.0-beta.27",
2018-01-12 14:21:36 -05:00
"webpack": "^3.10.0",
2017-12-19 15:14:09 -05:00
"window-size": "^1.1.0"
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",
"devDependencies": {
2017-12-14 10:26:39 -05:00
"eslint": "4.13.1",
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",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-coffee": "^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",
"mocha-sinon": "^1.1.4",
2017-12-14 13:09:15 -05:00
"sinon": "^1.15.4"
}
2015-05-24 08:38:56 -04:00
}