-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.96 KB
/
package.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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@coretoken/framework",
"version": "0.1.0",
"description": "Core Token Framework for Smart Contracts development",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "truffle compile",
"test": "truffle test",
"audit": "npm run audit-mythril-json && npm run audit-mythril-md && npm run audit-slither-json && npm run graphs",
"deploy": "truffle migrate",
"fluid": "truffle migrate --network fluid",
"audit-mythril-json": "sh ./scripts/audit-mythril-json.sh",
"audit-mythril-md": "sh ./scripts/audit-mythril-markdown.sh",
"audit-slither-json": "sh ./scripts/audit-slither-json.sh",
"audit-slither-md": "sh ./scripts/audit-slither-markdown.sh",
"install-mythril": "pip3 install mythril",
"install-slither": "pip3 install slither-analyzer",
"install-solograph": "npm install -g solgraph",
"install-graphviz": "brew install graphviz",
"graphs": "npm run graph-solgraph && npm run graph-slither",
"graph-solgraph": "sh ./scripts/graph-solgraph.sh",
"graph-slither": "sh ./scripts/graph-slither.sh",
"docs": "sh ./scripts/docs.sh",
"mint": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/coretoken/framework.git"
},
"keywords": [
"core",
"core-token",
"coretoken",
"token",
"framework"
],
"author": "Core Token <[email protected]> (https://coretoken.net)",
"license": "MIT",
"contributors": [
"Rastislav (https://github.com/raisty)"
],
"bugs": {
"url": "https://github.com/coretoken/framework/issues"
},
"homepage": "https://github.com/coretoken/framework#readme",
"devDependencies": {
"any-promise": "^1.3.0",
"bindings": "^1.3.1",
"mocha": "^5.2.0",
"solgraph": "^0.3.3",
"truffle-hdwallet-provider": "^1.0.0-web3one.5",
"openzeppelin-solidity": "latest"
},
"files": [
"truffle-config.js",
"contracts/",
"migrations/",
"scripts/",
"test/"
]
}