-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "market-oracle",
"version": "1.0.0",
"description": "Ethereum smart contracts to aggregate exchange rates from various sources",
"keywords": [
"ethereum",
"smart-contracts",
"solidity"
],
"license": "ISC",
"author": "elite-dev-1012",
"scripts": {
"coverage": "npx frg-coverage",
"precommit": "./scripts/pre-commit.sh",
"lint": "npx eslint ./migrations ./scripts ./test ./unit *.js --cache --fix && npx solhint ./contracts/*.sol",
"test": "./scripts/test.sh"
},
"pre-commit": {
"run": [
"precommit",
"lint"
]
},
"dependencies": {
"app-root-path": "~2.1.0",
"dotenv": "^8.2.0",
"frg-ethereum-runners": "https://github.com/ampleforth/frg-ethereum-runners.git",
"js-yaml": "~3.12.0",
"openzeppelin-solidity": "~2.0.0",
"solhint": "^2.0.0",
"truffle": "4.1.14",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-mocha": "0.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-spellcheck": "0.0.10",
"eslint-plugin-standard": "^1.3.3",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"solidity-coverage": "0.5.8"
}
}