-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 899 Bytes
/
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
{
"name": "ethereum-orbit-dai",
"version": "1.0.0",
"private": true,
"description": "Ethereum Orbit Dai",
"repository": "https://github.com/orbit-chain/ethereum-orbit-dai.git",
"license": "UNLICENSED",
"main": "index.js",
"scripts": {
"clean": "buidler clean",
"compile": "buidler compile",
"lint": "prettier -c **/*.js package.json",
"lint:fix": "prettier **/*.js package.json --write",
"test": "buidler test"
},
"prettier": {
"arrowParens": "avoid",
"endOfLine": "lf",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"dependencies": {
"@nomiclabs/buidler": "^1.3.2",
"@nomiclabs/buidler-truffle5": "^1.3.2",
"@nomiclabs/buidler-web3": "^1.3.2",
"prettier": "^2.0.5",
"prettier-plugin-packagejson": "^2.2.3",
"web3": "^1.2.7"
}
}