forked from VaporwaveFinance/bluebit-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "bluebit-core",
"version": "1.0.0",
"description": "Bluebit smart contracts",
"main": "truffle-config.js",
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test"
},
"scripts": {
"lint": "prettier --write 'contracts/**/*.sol' 'test/**/*.js' 'migrations/**/*.js'",
"clean": "rm -Rf ./build",
"compile": "truffle compile",
"console": "truffle console",
"migrate": "truffle migrate",
"networks": "truffle networks",
"test": "truffle test",
"watch": "truffle watch"
},
"author": "BluebitFinance",
"license": "MIT",
"prettier": {
"printWidth": 150,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 4
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.5.1",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"truffle-plugin-verify": "^0.5.15"
}
}