embark/test_apps/test_app/embark.json

32 lines
807 B
JSON
Raw Normal View History

2017-02-09 19:38:02 -05:00
{
2018-01-11 09:29:42 -05:00
"contracts": ["app/contracts/**", "contracts/**"],
2017-02-09 19:38:02 -05:00
"app": {
2017-12-13 09:01:53 -05:00
"js/jquery.js": "app/js/_vendor/jquery.min.js",
"js/bootstrap.js": "app/js/_vendor/bootstrap.min.js",
2017-02-09 19:38:02 -05:00
"css/app.css": ["app/css/**"],
"images/": ["app/images/**"],
2017-12-13 17:36:24 -05:00
"js/app.js": ["app/js/index.js"],
"js/test.js": ["app/js/_vendor/jquery.min.js", "app/js/_vendor/async.min.js", "app/js/test.js"],
2017-02-09 21:05:45 -05:00
"index.html": "app/index.html",
"test.html": "app/test.html",
2018-02-28 17:45:39 -05:00
"test2.html": "app/test2.html",
"test3.html": "app/test3.haml"
2017-02-09 19:38:02 -05:00
},
"buildDir": "dist/",
"config": "config/",
2018-03-31 19:35:20 -04:00
"versions": {
2018-06-01 18:09:54 -04:00
"solc": "0.4.24",
2018-08-22 18:32:43 -04:00
"web3": "1.0.0-beta",
"ipfs-api": "17.2.7"
2018-03-31 19:35:20 -04:00
},
2017-02-09 19:38:02 -05:00
"plugins": {
"embark-service": {}
2018-08-20 09:27:23 -04:00
},
"options": {
"solc": {
"optimize": true,
"optimize-runs": 200
}
2017-02-09 19:38:02 -05:00
}
}