forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle-box.json
50 lines (50 loc) · 1008 Bytes
/
truffle-box.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
{
"ignore": [
".circleci",
".codeclimate.yml",
".dockerignore",
".eslintignore",
".eslintrc",
".gitattributes",
".gitignore",
".nvmrc",
".prettierignore",
".prettierrc",
".soliumignore",
".soliumrc.json",
"babel.config.js",
"chainlink-launcher-sgx.sh",
"chainlink-launcher.sh",
"core",
"docker-compose.yaml",
"Dockerfile",
"Dockerfile-sgx",
"docs",
"examples",
"explorer",
"go.mod",
"go.sum",
"integration",
"kit.json",
"LICENSE",
"GNUmakefile",
"operator_ui",
"package.json",
"README.md",
"sgx",
"styleguide",
"tools",
"tsconfig.json",
"VERSION",
"yarn.lock"
],
"commands": {
"Run tests": "npm test",
"Compile contracts": "npm run compile",
"Migrate to development network": "npm run migrate:dev",
"Migrate to live network": "npm run migrate:live"
},
"hooks": {
"post-unpack": "bash unbox.sh && rm unbox.sh && npm install"
}
}