embark/test_app/embark.json

26 lines
912 B
JSON
Raw Normal View History

2017-02-10 00:38:02 +00:00
{
"contracts": ["app/contracts/**"],
"app": {
"css/app.css": ["app/css/**"],
"images/": ["app/images/**"],
2017-02-20 22:31:05 +00:00
"js/app.js": ["embark.js", "app/js/_vendor/jquery.min.js", "app/js/_vendor/bootstrap.min.js", "app/js/**", "!app/js/test.js"],
"js/embark.js": ["embark.js"],
2017-02-16 00:27:23 +00:00
"js/abi.js": "abi.js",
2017-02-20 22:31:05 +00:00
"js/test.js": ["embark.js", "app/js/_vendor/jquery.min.js", "app/js/_vendor/async.min.js", "app/js/test.js"],
"js/mytoken.js": ["$MyToken", "app/js/token_test.js"],
2017-02-10 02:05:45 +00:00
"index.html": "app/index.html",
"test.html": "app/test.html",
"test2.html": "app/test2.html",
2017-07-02 18:55:35 +00:00
"js/myweb3.js": "web3-0.18.js",
2017-07-02 22:03:14 +00:00
"js/web3.js": "web3.js",
2017-07-03 22:54:31 +00:00
"js/all_contracts.js": "$ALL_CONTRACTS",
"js/only_embark.js": "$EMBARK_JS"
2017-02-10 00:38:02 +00:00
},
"buildDir": "dist/",
"config": "config/",
"plugins": {
"embark-babel": {"files": ["**/*.js", "**/*.jsx", "!**/_vendor/*.js"]},
"embark-service": {}
2017-02-10 00:38:02 +00:00
}
}