-
Notifications
You must be signed in to change notification settings - Fork 4
/
truffle.json
51 lines (51 loc) · 1.18 KB
/
truffle.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"build": {
"index.html": "index.html",
"publish.html": "publish.html",
"access.html": "access.html",
"test.html": "test.html",
"app.js": [
"javascripts/lib/ipfsapi.js",
"javascripts/lib/react.js",
"javascripts/lib/react-dom.js",
"javascripts/components/app.es6",
"javascripts/components/file.es6",
"javascripts/components/crypto.es6",
"javascripts/components/ipfs.es6",
"javascripts/components/request.es6",
"javascripts/components/progressbar.es6",
"javascripts/components/dropzone.es6"
],
"jsx.js": [
"jsx/requestList.jsx"
],
"buffer.js" : [
"javascripts/lib/buffer.js"
],
"require.js" : [
"javascripts/lib/require.js"
],
"test.css" : ["test/lib/mocha.css"],
"test_libs.js" : [
"test/lib/jquery.js",
"test/lib/expect.js",
"test/lib/mocha.js",
"test/lib/chai.js",
"test/lib/sinon.js"
],
"test.js" : [
"test/components/crypto.es6"
],
"app.css": [
"stylesheets/app.css"
],
"images/": "images/"
},
"deploy": [
"DocumentManager"
],
"rpc": {
"host": "localhost",
"port": 8545
}
}