embark/test_dapps/test_app/embark.json

34 lines
880 B
JSON
Raw Normal View History

2017-02-10 00:38:02 +00:00
{
2018-01-11 14:29:42 +00:00
"contracts": ["app/contracts/**", "contracts/**"],
2017-02-10 00:38:02 +00:00
"app": {
2017-12-13 14:01:53 +00:00
"js/jquery.js": "app/js/_vendor/jquery.min.js",
"js/bootstrap.js": "app/js/_vendor/bootstrap.min.js",
2017-02-10 00:38:02 +00:00
"css/app.css": ["app/css/**"],
"images/": ["app/images/**"],
2017-12-13 22:36:24 +00: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-10 02:05:45 +00:00
"index.html": "app/index.html",
"test.html": "app/test.html",
2018-02-28 22:45:39 +00:00
"test2.html": "app/test2.html",
"test3.html": "app/test3.haml"
2017-02-10 00:38:02 +00:00
},
"buildDir": "dist/",
"config": "config/",
2018-03-31 23:35:20 +00:00
"versions": {
"solc": "0.4.25",
2018-08-22 22:32:43 +00:00
"web3": "1.0.0-beta",
"ipfs-api": "17.2.7"
2018-03-31 23:35:20 +00:00
},
2017-02-10 00:38:02 +00:00
"plugins": {
"embark-service": {},
2019-02-25 13:55:47 +00:00
"embarkjs-connector-web3": {}
2018-08-20 13:27:23 +00:00
},
"options": {
"solc": {
"optimize": true,
"optimize-runs": 200
}
},
"generationDir": "embarkArtifacts"
2017-02-10 00:38:02 +00:00
}